From 7eaf967b8035a4169dbdd28a57f57ff93ad43c6d Mon Sep 17 00:00:00 2001 From: klendathu2k <56083924+klendathu2k@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:37:14 -0400 Subject: [PATCH 1/4] Picodst fixes (#585) Leszek reported (on the simulations list) an issue with converting simulation MuDsts to picoDsts. The code issues a couple of errors, and then crashes. I believe this is due to a faulty assumption in initialization. The code relies on the filename begining with "st_" in order to determine the basename of the file, when the full path is given. This fails for Leszek's case (and for any pure simualtion). When the assumption fails, the initialization routine returns before creating the TTree. This results in the crash during Make, when the null pointer to the TTree is deferenced. This PR removes the faulty assumption, and makes early returns from Init() a "fatal" return rather than just an error. --- StRoot/StPicoDstMaker/StPicoDstMaker.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/StRoot/StPicoDstMaker/StPicoDstMaker.cxx b/StRoot/StPicoDstMaker/StPicoDstMaker.cxx index 8cbded354f4..4e114feba2a 100644 --- a/StRoot/StPicoDstMaker/StPicoDstMaker.cxx +++ b/StRoot/StPicoDstMaker/StPicoDstMaker.cxx @@ -99,10 +99,10 @@ #include "StPicoEvent/StPicoArrays.h" #include "StPicoEvent/StPicoDst.h" #include "StPicoDstMaker/StPicoDstMaker.h" +#include "TSystem.h" #if defined (__TFG__VERSION__) #include "StarRoot/TDirIter.h" #include "StMuDSTMaker/COMMON/StMuProbPidTraits.h" -#include "TSystem.h" #include "TH1.h" #include "TH2.h" static Int_t _debug = 0; @@ -278,20 +278,20 @@ Int_t StPicoDstMaker::Init() { if (setVtxModeAttr() != kStOK) { LOG_ERROR << "Pico Vertex Mode is not set ... " << endm; - return kStErr; + return kStFatal; } } //if (mVtxMode == PicoVtxMode::NotSet) // To write or not to write covariance matrices into the branch if (setCovMtxModeAttr() != kStOK) { LOG_ERROR << "Pico covariance matrix I/O mode is not set ..." << endm; - return kStErr; + return kStFatal; } // To write or not to write BEmc Smd hits into the branch if (setBEmcSmdModeAttr() != kStOk) { LOG_ERROR << "Pico BEmc Smd I/O mode is not set ..." << endm; - return kStErr; + return kStFatal; } #if !defined (__TFG__VERSION__) @@ -302,13 +302,13 @@ Int_t StPicoDstMaker::Init() { mOutputFileName.ReplaceAll(".root", ".picoDst.root"); } else { - mInputFileName = mInputFileName(mInputFileName.Index("st_"), mInputFileName.Length()); + mInputFileName = gSystem->BaseName(mInputFileName); mOutputFileName = mInputFileName; mOutputFileName.ReplaceAll("MuDst.root", "picoDst.root"); if (mOutputFileName == mInputFileName) { LOG_ERROR << "Input file is not a MuDst ... " << endm; - return kStErr; + return kStFatal; } } #else /* __TFG__VERSION__ */ From 1d76e83747dd263c4a0a8ef7fa9f013dbe4d9400 Mon Sep 17 00:00:00 2001 From: dkapukchyan Date: Wed, 27 Sep 2023 08:02:57 -0700 Subject: [PATCH 2/4] More additions and fixes to StFcsWaveformFitMaker and related classes (#579) Added and changed some options for PeakAnaPainter; made corresponding fixes of draw options in other parts of the code. Fixed an issue in the GetPossiblePeaks algorithm of PeakAna. Fix for StFcsWaveformFitMaker to prevent double calls to AnaPed() for pedestal determination. Added pedestal subtraction to sum methods. --- StRoot/StFcsWaveformFitMaker/PeakAna.cxx | 22 +++-- StRoot/StFcsWaveformFitMaker/PeakAna.h | 17 ++-- .../StFcsWaveformFitMaker/PeakAnaPainter.cxx | 86 ++++++++++--------- StRoot/StFcsWaveformFitMaker/PeakAnaPainter.h | 19 ++-- .../StFcsWaveformFitMaker.cxx | 70 ++++++++++----- .../StFcsWaveformFitMaker.h | 1 + 6 files changed, 134 insertions(+), 81 deletions(-) diff --git a/StRoot/StFcsWaveformFitMaker/PeakAna.cxx b/StRoot/StFcsWaveformFitMaker/PeakAna.cxx index 5d69cd7fadf..535a433f898 100644 --- a/StRoot/StFcsWaveformFitMaker/PeakAna.cxx +++ b/StRoot/StFcsWaveformFitMaker/PeakAna.cxx @@ -487,12 +487,14 @@ PeakAna* PeakAna::MeanFilter( Int_t sizeavgs, bool copy ) } } ynew[ipoint] = sumvalues/sumweights; + if( GetDebug()>2 ){ std::cout << " - |i:"<ForceInternal(); + if( GetDebug()>1 ){ std::cout << "PeakAna::MeanFilter:Copied PeakAna" << std::endl; } return ana; } if( mInternalSignal ){ @@ -501,11 +503,13 @@ PeakAna* PeakAna::MeanFilter( Int_t sizeavgs, bool copy ) //[July 3, 2022]>Taken from TGraph CtorAllocate(). Setting minimum and maximum to -1111 effectivley resets the minimum and maximum. GetData()->SetMinimum(-1111); GetData()->SetMaximum(-1111); + if( GetDebug()>1 ){ std::cout << "PeakAna::MeanFilter:Internal Graph Modified" << std::endl; } } else{ TGraph* graph = new TGraph(npoints,xdata,ynew ); SetData(graph); ForceInternal(); + if( GetDebug()>1 ){ std::cout << "PeakAna::MeanFilter:Created New Internal Graph" << std::endl; } } ResetPeak(); return this; @@ -578,6 +582,7 @@ PeakAna* PeakAna::GausFilter( Int_t sizeavgs, bool copy ) else{ sumweights += 2; } } ynew[ipoint] = sumvalues/sumweights; + if( GetDebug()>2 ){ std::cout << " - |i:"<ForceInternal(); + if( GetDebug()>1 ){ std::cout << "PeakAna::MeanFilter:Copied PeakAna" << std::endl; } return ana; } if( mInternalSignal ){ @@ -593,11 +599,13 @@ PeakAna* PeakAna::GausFilter( Int_t sizeavgs, bool copy ) //[July 3, 2022]>Taken from TGraph CtorAllocate(). Setting minimum and maximum to -1111 effectivley resets the minimum and maximum. GetData()->SetMinimum(-1111); GetData()->SetMaximum(-1111); + if( GetDebug()>1 ){ std::cout << "PeakAna::MeanFilter:Internal Graph Modified" << std::endl; } } else{ TGraph* graph = new TGraph(npoints,xdata,ynew ); SetData(graph); ForceInternal(); + if( GetDebug()>1 ){ std::cout << "PeakAna::MeanFilter:Created New Internal Graph" << std::endl; } } ResetPeak(); return this; @@ -673,12 +681,14 @@ void PeakAna::GetPossiblePeaks() //Check above will skip bad values if( peak.mStartX1 ){LOG_DEBUG << " + No StartTime" << endm;} - if( LY>baseline+slopecutoff && Slope>0 ){ - //Needs to be checked sequentially since we need to reject any points below the baseline+cutoff that may have a large slope - if( GetDebug()>1 ){LOG_DEBUG << " + Passed Slope and baselineCutoff setting as start time" << endm;} - peak.mStartX=LX;//Set start x-value - peak.mStartY=LY;//Set start y-value - LocalMax=LX;//Start checking local maximums + if( Slope>0){ + if( LY>baseline+slopecutoff || RY>baseline+slopecutoff ){ + //Needs to be checked sequentially since we need to reject any points below the baseline+cutoff that may have a large slope + if( GetDebug()>1 ){LOG_DEBUG << " + Passed Slope and baselineCutoff setting as start time" << endm;} + peak.mStartX=LX;//Set start x-value + peak.mStartY=LY;//Set start y-value + LocalMax=LX;//Start checking local maximums + } } //If didn't pass thresholds for start time then continue to next point } diff --git a/StRoot/StFcsWaveformFitMaker/PeakAna.h b/StRoot/StFcsWaveformFitMaker/PeakAna.h index db6f420e587..d1c66b93ba2 100644 --- a/StRoot/StFcsWaveformFitMaker/PeakAna.h +++ b/StRoot/StFcsWaveformFitMaker/PeakAna.h @@ -1,5 +1,8 @@ /* Author: David Kapukchyan +@[October 20, 2022] +> Added doxygen style comments + @[September 29, 2022] > Got rid of the virtual painter as it is no longer needed @@ -86,7 +89,6 @@ There is a helper data class #PeakWindow which holds the found peak data. //Custom Headers #include "PeakWindow.h" -//#include "PeakAnaVirtualPainter.h" class PeakAnaPainter; class PeakAna : public TObject @@ -192,13 +194,16 @@ class PeakAna : public TObject peak qa drawing options(case insensitive):\n - "R" for range\n - "B" for baselines\n - - "F" found peak qa\n - - "P" for full peak qa\n - - "A" for all, which combines "P" and "B"\n - stats drawing options(case insensitive):\n + - "F" found peak window\n + - "P" for all peak windows\n + - "M" for found peak marker\n + - "W" for all peak markers (upside down M)\n + - "E" combines "P" and "W"\n + - "A" for all, which combines "B", "P", and "W"\n + stats drawing options(case insensitive):\n - "S" is to show just the found peak\n - "A" is to show for all peaks\n - - "D" is whether to show detailed printout or not (works with option "S" or "A") + - "D" is whether to show detailed printout or not (works with option "S" or "A")\n Example1: "APL;FB;S" means draw graph using option "APL", draw only found peak qa and baselines, and create a stats box showing only basic information about the found peak. Example2: ";A;AD" means don't draw graph but draw all peaks and put detailed information of all peaks in a stats box diff --git a/StRoot/StFcsWaveformFitMaker/PeakAnaPainter.cxx b/StRoot/StFcsWaveformFitMaker/PeakAnaPainter.cxx index 91922437e12..74ceb97058c 100644 --- a/StRoot/StFcsWaveformFitMaker/PeakAnaPainter.cxx +++ b/StRoot/StFcsWaveformFitMaker/PeakAnaPainter.cxx @@ -80,8 +80,10 @@ void PeakAnaPainter::Paint(Option_t* opt) bool drawgraph = true; bool region = false; bool drawbaselines = false; - bool drawfoundpeakqa = false; - bool drawfullpeakqa = false; + bool drawfoundpeakrange = false; + bool drawallpeakranges = false; + bool drawfoundmarker = false; + bool drawallmarkers = false; std::size_t firstcolon = option.find(";"); if( firstcolon!=std::string::npos ){ @@ -99,19 +101,22 @@ void PeakAnaPainter::Paint(Option_t* opt) mPeakOption.ToLower(); if( mGraphOption.Length()==0 ){ drawgraph=false; } - //if( peakopts.Contains("e") ){ drawgraph=false; } if( mPeakOption.Contains("r") ){ region=true; } if( mPeakOption.Contains("b") ){ drawbaselines=true; } - if( mPeakOption.Contains("f") ){ drawfoundpeakqa=true; } - if( mPeakOption.Contains("p") ){ drawfullpeakqa=true; } - if( mPeakOption.Contains("a") ){ drawbaselines=true; drawfullpeakqa=true; } + if( mPeakOption.Contains("f") ){ drawfoundpeakrange=true; } + if( mPeakOption.Contains("p") ){ drawfoundpeakrange=true; drawallpeakranges=true; } + if( mPeakOption.Contains("m") ){ drawfoundmarker=true; } + if( mPeakOption.Contains("w") ){ drawfoundmarker=true; drawallmarkers=true; } + if( mPeakOption.Contains("e") ){ drawfoundpeakrange=true; drawallpeakranges=true; drawfoundmarker=true; drawallmarkers=true; } + if( mPeakOption.Contains("a") ){ drawbaselines=true; drawfoundpeakrange=true; drawallpeakranges=true; drawfoundmarker=true; drawallmarkers=true; } - if( drawfoundpeakqa && drawfullpeakqa ){ drawfoundpeakqa=false; }//Redundant to do both found and all peaks if( drawgraph ) { this->PaintRawData(); } if( region && drawgraph ) { this->PaintFoundPeak(); } //Doesn't make sense to restrict graph range if graph is not being drawn if( drawbaselines ) { this->PaintBaselines(); } - if( drawfoundpeakqa ) { this->PaintFoundPeakQa(); } - if( drawfullpeakqa ) { this->PaintPeakRanges(); } + if( drawfoundpeakrange ) { this->PaintFoundPeakRange(); } + if( drawallpeakranges ) { this->PaintPeakRanges(); } + if( drawfoundmarker ) { this->PaintFoundMarker(); } + if( drawallmarkers ) { this->PaintPeakMarkers(); } if( mStatsOption.Length()!=0 ) { this->PaintStats(); } } @@ -143,37 +148,11 @@ void PeakAnaPainter::PaintRawData( ) void PeakAnaPainter::PaintFoundPeak( ) { if( !ValidGraph()){return;} - Double_t Xmin = mPA->PeakStart(); Double_t Xmax = mPA->PeakEnd(); if( !(Xmin>mPA->MaxX() || Xmax>mPA->MaxX()) ){mPA->GetData()->GetXaxis()->SetRangeUser(Xmin-5,Xmax+5);} } -void PeakAnaPainter::PaintFoundPeakQa() -{ - if( !ValidGraph() ){return;} - - Int_t computedindex = mPA->FoundPeakIndex(); - if( computedindex<0 ){ computedindex = mPA->AnalyzeForPeak(); } - this->PaintBaselines(); - this->PaintFoundRange(); - - return; -} - -void PeakAnaPainter::PaintPeakQa( ) -{ - if( !ValidGraph() ){return;} - - Int_t computedindex = mPA->FoundPeakIndex(); - if( computedindex<0 ){computedindex = mPA->AnalyzeForPeak();} - - this->PaintBaselines(); - this->PaintPeakRanges(); - - return; -} - void PeakAnaPainter::PaintBaselines() { Double_t base = mPA->Baseline(); @@ -189,8 +168,9 @@ void PeakAnaPainter::PaintBaselines() mTheHitLine->Paint(); } -void PeakAnaPainter::PaintFoundRange() +void PeakAnaPainter::PaintFoundPeakRange() { + if( !ValidGraph() ){return;} Int_t computedindex = mPA->FoundPeakIndex(); if( computedindex<0 ){computedindex = mPA->AnalyzeForPeak();} if( computedindex == mPA->NPeaks() ){return;}//If no peak found then computed index is equal to number of peaks in peak vector @@ -198,17 +178,15 @@ void PeakAnaPainter::PaintFoundRange() TLine* sl = mPA->GetPeak(computedindex).GetStartLine(mPA->MinY(),mPA->MaxY()); sl->SetLineColor(kRed); sl->Paint(); - TMarker* mp = mPA->GetPeak(computedindex).GetPeakMarker(); - mp->SetMarkerColor(kViolet); - mp->SetMarkerSize(mPA->GetMarkerSize()*2.0); - mp->Paint(); TLine* el = mPA->GetPeak(computedindex).GetEndLine(mPA->MinY(),mPA->MaxY()); el->SetLineColor(kOrange); el->Paint(); } + void PeakAnaPainter::PaintPeakRanges( ) { + if( !ValidGraph() ){return;} Int_t computedindex = mPA->FoundPeakIndex(); if(computedindex<0 ){computedindex = mPA->AnalyzeForPeak();} @@ -226,11 +204,37 @@ void PeakAnaPainter::PaintPeakRanges( ) mp->Paint(); mPA->GetPeak(ipeak).GetEndLine( mPA->MinY(), mPA->MaxY() )->Paint(); } - this->PaintFoundRange(); return; } +void PeakAnaPainter::PaintFoundMarker() +{ + if( !ValidGraph() ){return;} + Int_t computedindex = mPA->FoundPeakIndex(); + if( computedindex<0 ){computedindex = mPA->AnalyzeForPeak();} + if( computedindex == mPA->NPeaks() ){return;}//If no peak found then computed index is equal to number of peaks in peak vector + + TMarker* mp = mPA->GetPeak(computedindex).GetPeakMarker(); + mp->SetMarkerColor(kViolet); + mp->SetMarkerSize(mPA->GetMarkerSize()*2.0); + mp->Paint(); +} + +void PeakAnaPainter::PaintPeakMarkers() +{ + if( !ValidGraph() ){return;} + Int_t computedindex = mPA->FoundPeakIndex(); + if(computedindex<0 ){computedindex = mPA->AnalyzeForPeak();} + + for( UShort_t ipeak = 0; ipeakNPeaks(); ++ipeak ){ + if( ipeak==computedindex ){continue;} + TMarker* mp = mPA->GetPeak(ipeak).GetPeakMarker(); + mp->SetMarkerSize(mPA->GetMarkerSize()*2.0); + mp->Paint(); + } +} + void PeakAnaPainter::PaintStats() { //@[April 8, 2022]>Need a way to determine size of pavetext from number of peaks as well as information to be added for each peak (this could be as simple as counting the number of lines and scaling the size accordingly) diff --git a/StRoot/StFcsWaveformFitMaker/PeakAnaPainter.h b/StRoot/StFcsWaveformFitMaker/PeakAnaPainter.h index 44ddd21e182..8ae820aedfa 100644 --- a/StRoot/StFcsWaveformFitMaker/PeakAnaPainter.h +++ b/StRoot/StFcsWaveformFitMaker/PeakAnaPainter.h @@ -1,5 +1,8 @@ /* Author: David Kapukchyan +@[July 5, 2023] +> Modified paint functions to only paint certain things and added options to select what to paint + @[October 20, 2022] > Added doxygen style comments @@ -53,14 +56,14 @@ class PeakAnaPainter : public TObject virtual ~PeakAnaPainter(); virtual void Paint(Option_t *opt=""); - virtual void PaintRawData(); //!< Raw data with no modifications - virtual void PaintFoundPeak(); //!< Raw data inside zoomed in on found signal region - virtual void PaintFoundPeakQa(); //!< Draw signal and found signal window - virtual void PaintPeakQa(); //!< Show all found signal windows and signal - virtual void PaintBaselines(); //!< Just draw the baseline and hitlines - virtual void PaintFoundRange(); //!< Just draw the found peak on the current pad - virtual void PaintPeakRanges(); //!< Draw all found peaks on the current pad - virtual void PaintStats(); //!< Draw Stats box for peak finding + virtual void PaintRawData(); //!< Raw data with no modifications + virtual void PaintFoundPeak(); //!< Raw data inside zoomed in on found signal region + virtual void PaintBaselines(); //!< Just draw the baseline and hitlines + virtual void PaintFoundPeakRange(); //!< Just draw the found peak on the current pad + virtual void PaintPeakRanges(); //!< Draw all found peaks on the current pad except the found peak + virtual void PaintFoundMarker(); //!< Draw the marker indicating the found peak + virtual void PaintPeakMarkers(); //!< Draw markers indicating all peaks except the found peak marker + virtual void PaintStats(); //!< Draw Stats box for peak finding virtual void CleanPainter(); //!< Clean up internal objects diff --git a/StRoot/StFcsWaveformFitMaker/StFcsWaveformFitMaker.cxx b/StRoot/StFcsWaveformFitMaker/StFcsWaveformFitMaker.cxx index 1673eb92e0c..d2e01307dd0 100644 --- a/StRoot/StFcsWaveformFitMaker/StFcsWaveformFitMaker.cxx +++ b/StRoot/StFcsWaveformFitMaker/StFcsWaveformFitMaker.cxx @@ -510,8 +510,8 @@ int StFcsWaveformFitMaker::Make() { float gain = mDb->getGain(hits[i]); float gaincorr = mDb->getGainCorrection(hits[i]); hits[i]->setEnergy(integral*gain*gaincorr); - if(GetDebug()>0) printf("det=%1d id=%3d integ=%10.2f peak=%8.2f, sig=%8.4f chi2=%8.2f npeak=%2d\n", - det,hits[i]->id(),integral,res[2],res[3],res[4],int(res[5])); + if(GetDebug()>0){ printf("det=%1d id=%3d integ=%10.2f peak=%8.2f, sig=%8.4f chi2=%8.2f npeak=%2d ped=%8.2f pedrms=%4.2f\n", + det,hits[i]->id(),integral,res[2],res[3],res[4],int(res[5]),res[6],res[7]); } if(mMeasureTime){ auto stop=std::chrono::high_resolution_clock::now(); long long usec = chrono::duration_cast(stop-start).count(); @@ -780,6 +780,7 @@ float StFcsWaveformFitMaker::sum8(TGraphAsymmErrors* g, float* res){ } } //res[0]/=1.226; //Compensate for fitting sum in ECal. Only turn on for testing comparisons + if( fabs(res[7]) > 0.000001 ){ sum -= res[6]*8; }//pedestal subtraction for sum8. 8 timebi sum, so pedestal*8 is integrated sum of pedestal. res[0]=sum; if(sum>0) res[2]=tsum/sum; return sum; @@ -800,6 +801,7 @@ float StFcsWaveformFitMaker::sum16(TGraphAsymmErrors* g, float* res){ tsum += a[i] * tb; } } + if( fabs(res[7]) > 0.000001 ){ sum -= res[6]*16; }//pedestal subtraction for sum16. 16 timebin sum, so pedestal*16 is integrated sum of pedestal. res[0]=sum; if(sum>0) res[2]=tsum/sum; return sum; @@ -824,12 +826,14 @@ float StFcsWaveformFitMaker::highest(TGraphAsymmErrors* g, float* res){ } } //! https://www.star.bnl.gov/protected/spin/akio/fcs/pulse/waveformRes.png + if( fabs(res[7]) > 0.000001 ){ maxadc -= res[6]; }//pedestal subtraction for highest. res[0]=maxadc / 0.2; //this is estimated "full integral" res[1]=maxadc; //this is peak height res[2]=maxtb; //this is peak position [timebin] //res[3]=0.0; //no width from this method //res[4]=0.0; //no chi2 from this - //res[5]=0.0; //no # of peaks + //res[5]=0.0; //no # of peaks + return maxadc; //this is the highest } @@ -859,6 +863,7 @@ float StFcsWaveformFitMaker::highest3(TGraphAsymmErrors* g, float* res){ } } //! https://www.star.bnl.gov/protected/spin/akio/fcs/pulse/waveformRes.png + if( fabs(res[7]) > 0.000001 ){ sum -= res[6]*3; }//pedestal subtraction for highest3. Since 3 timebin sum pedestal*3 is integrated pedestal res[0]= sum / 0.555; //this is estimated "full integral" res[1]= maxadc; //this is peak height if(sum>0) res[2]= tsum/sum; //this is averaged peak position [timebin] @@ -927,14 +932,15 @@ float StFcsWaveformFitMaker::gausFit(TGraphAsymmErrors* g, float* res, TF1*& fun } } - //For comparing with pulse fit analysis class - if( mPulseFit==0 ){mPulseFit = new StFcsPulseAna(g); SetupDavidFitterMay2022(); }//Setup only needs to be called once as those values will not get reset when data changes. - else{ mPulseFit->SetData(g); } - Int_t compidx = mPulseFit->FoundPeakIndex(); + Int_t compidx = -1; int myNpeaks = -1; int npeakidx = -1; int mypeakidx = -1; if( mTest==2 || mTest==8 ){ + //For comparing with pulse fit analysis class + if( mPulseFit==0 ){mPulseFit = new StFcsPulseAna(g); SetupDavidFitterMay2022(); }//Setup only needs to be called once as those values will not get reset when data changes. + else{ mPulseFit->SetData(g); } + compidx = mPulseFit->FoundPeakIndex(); mH1_NPeaksAkio->Fill(npeak); if( trgx>=0 ){ mH1_NPeaksFilteredAkio->Fill(npeak); }//peaks inside triggered crossing if( mTest==2 ){ @@ -1050,10 +1056,10 @@ void StFcsWaveformFitMaker::drawFit(TGraphAsymmErrors* gg, TF1* func){ char post[50]; sprintf(post,"_D%dC%d",det,ch); StFcsPulseAna* ana = (StFcsPulseAna*)mPulseFit->DrawCopy("LP;A",post,gg);//Sets 'kCanDelete' so canvas will delete the copy - ana->GetData()->SetLineColor(kBlue); - ana->GetData()->SetMarkerStyle(kBlue); - ana->GetData()->SetMarkerStyle(4); - ana->GetData()->SetMarkerSize(0.5); + ana->SetLineColor(kBlue); + ana->SetMarkerColor(kBlue); + ana->SetMarkerStyle(4); + ana->SetMarkerSize(0.5); } if(mPad==MAXPAD){ @@ -1085,7 +1091,7 @@ void StFcsWaveformFitMaker::drawCh(UInt_t detid, UInt_t ch) const if( id>=0 && id==static_cast(ch) ){ ggdraw->Draw("APL"); ggdraw->SetLineColor(kBlack); - ggdraw->SetMarkerStyle(kBlack); + ggdraw->SetMarkerColor(kBlack); ggdraw->SetMarkerStyle(4); ggdraw->SetMarkerSize(0.5); ggdraw->GetXaxis()->SetTitle("timebin"); @@ -1096,9 +1102,9 @@ void StFcsWaveformFitMaker::drawCh(UInt_t detid, UInt_t ch) const StFcsDb::getFromName(ggdraw->GetName(),det,ch); char post[50]; sprintf(post,"_D%dC%d",det,ch); - StFcsPulseAna* ana = mPulseFit->DrawCopy("LP;P",post,ggdraw);//Sets 'kCanDelete' so an external canvas will delete this object when "Clear" is called + StFcsPulseAna* ana = mPulseFit->DrawCopy("LP;E",post,ggdraw);//Sets 'kCanDelete' so an external canvas will delete this object when "Clear" is called ana->GetData()->SetLineColor(kBlue); - ana->GetData()->SetMarkerStyle(kBlue); + ana->GetData()->SetMarkerColor(kBlue); ana->GetData()->SetMarkerStyle(4); ana->GetData()->SetMarkerSize(0.5); //ana->ResetPeak(); @@ -1125,15 +1131,15 @@ void StFcsWaveformFitMaker::drawDualFit(UInt_t detid, UInt_t ch) ggdraw->SetTitle(post); ggdraw->Draw("APL"); ggdraw->SetLineColor(kBlack); - ggdraw->SetMarkerStyle(kBlack); + ggdraw->SetMarkerColor(kBlack); ggdraw->SetMarkerStyle(4); ggdraw->SetMarkerSize(0.5); ggdraw->GetXaxis()->SetTitle("timebin"); ggdraw->GetYaxis()->SetTitle("ADC"); if( mPulseFit!=0 ){ - StFcsPulseAna* ana = mPulseFit->DrawCopy("LP;P",post,ggdraw);//Sets 'kCanDelete' so an external canvas will delete this object when "Clear" is called + StFcsPulseAna* ana = mPulseFit->DrawCopy("LP;E",post,ggdraw);//Sets 'kCanDelete' so an external canvas will delete this object when "Clear" is called ana->GetData()->SetLineColor(kBlue); - ana->GetData()->SetMarkerStyle(kBlue); + ana->GetData()->SetMarkerColor(kBlue); ana->GetData()->SetMarkerStyle(4); ana->GetData()->SetMarkerSize(0.5); Int_t compidx = ana->FoundPeakIndex(); @@ -1194,7 +1200,7 @@ void StFcsWaveformFitMaker::drawDualFit(UInt_t detid, UInt_t ch) } float StFcsWaveformFitMaker::gausFitWithPed(TGraphAsymmErrors* g, float* res, TF1*& func){ - AnaPed( g, res[6], res[7] ); + if( fabs(res[7]) < 0.000001 ){AnaPed( g, res[6], res[7] ); } //Only call AnaPed if pedestal hasn't already been calculated and stored in res. res[7] will be nonzero only if AnaPed was already called. LOG_DEBUG << "Pedestal ("< Date: Thu, 28 Sep 2023 15:07:08 -0400 Subject: [PATCH 3/4] feat: upgrade environment to star-spack@0.3.0 (#588) --- Dockerfile | 2 +- mgr/config/v0.3.0-rhel7-root5.34.38.config | 16 ++++++++++++++++ mgr/config/v0.3.0-rhel7-root6.16.00.config | 16 ++++++++++++++++ mgr/config/v0.3.0-rhel7-root6.24.06.config | 16 ++++++++++++++++ 4 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 mgr/config/v0.3.0-rhel7-root5.34.38.config create mode 100644 mgr/config/v0.3.0-rhel7-root6.16.00.config create mode 100644 mgr/config/v0.3.0-rhel7-root6.24.06.config diff --git a/Dockerfile b/Dockerfile index 481b63d2407..5552ecb917b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG starenv=root5 # Pick one from [gcc485, gcc11] ARG compiler=gcc485 -FROM ghcr.io/star-bnl/star-spack:v0.2.3-${starenv}-${compiler} +FROM ghcr.io/star-bnl/star-spack:v0.3.0-${starenv}-${compiler} ARG compiler diff --git a/mgr/config/v0.3.0-rhel7-root5.34.38.config b/mgr/config/v0.3.0-rhel7-root5.34.38.config new file mode 100644 index 00000000000..bfb649b306d --- /dev/null +++ b/mgr/config/v0.3.0-rhel7-root5.34.38.config @@ -0,0 +1,16 @@ +#!/usr/bin/env csh + +# this is in place of buggy `module clear` (module VERSION=3.2.10 DATE=2012-12-21) +unsetenv _LMFILES_* + +if ( $USE_64BITS == 1 ) then + module purge + module unuse /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86/ + module use /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86_64/ +else + module purge + module unuse /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86_64/ + module use /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86/ +endif + +module load star-env-0.3.0-root-5.34.38 diff --git a/mgr/config/v0.3.0-rhel7-root6.16.00.config b/mgr/config/v0.3.0-rhel7-root6.16.00.config new file mode 100644 index 00000000000..b33b1856c90 --- /dev/null +++ b/mgr/config/v0.3.0-rhel7-root6.16.00.config @@ -0,0 +1,16 @@ +#!/usr/bin/env csh + +# this is in place of buggy `module clear` (module VERSION=3.2.10 DATE=2012-12-21) +unsetenv _LMFILES_* + +if ( $USE_64BITS == 1 ) then + module purge + module unuse /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86/ + module use /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86_64/ +else + module purge + module unuse /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86_64/ + module use /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86/ +endif + +module load star-env-0.3.0-root-6.16.00 diff --git a/mgr/config/v0.3.0-rhel7-root6.24.06.config b/mgr/config/v0.3.0-rhel7-root6.24.06.config new file mode 100644 index 00000000000..80efe1ef9cb --- /dev/null +++ b/mgr/config/v0.3.0-rhel7-root6.24.06.config @@ -0,0 +1,16 @@ +#!/usr/bin/env csh + +# this is in place of buggy `module clear` (module VERSION=3.2.10 DATE=2012-12-21) +unsetenv _LMFILES_* + +if ( $USE_64BITS == 1 ) then + module purge + module unuse /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86/ + module use /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86_64/ +else + module purge + module unuse /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86_64/ + module use /cvmfs/star.sdcc.bnl.gov/star-spack/spack/share/spack/modules/linux-rhel7-x86/ +endif + +module load star-env-0.3.0-root-6.24.06 From 8e454e7b8121592539391b1ddb4ed36510e72df5 Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Thu, 28 Sep 2023 15:29:15 -0400 Subject: [PATCH 4/4] ci: Enable ROOT6 tests (#452) Co-authored-by: Dmitry Kalinkin --- .github/workflows/build-pull-request.yml | 6 ++-- StarDb/Calibrations/ftpc/ftpcCoordTrans.C | 2 ++ StarDb/Calibrations/ftpc/ftpcTemps.devE.C | 2 ++ StarDb/Calibrations/ftpc/ftpcTemps.eStar2.C | 2 ++ StarDb/Calibrations/ftpc/ftpcTemps.y2010.C | 2 ++ StarDb/Calibrations/ftpc/ftpcTemps.y2011.C | 2 ++ StarDb/Calibrations/ftpc/ftpcVoltage.C | 2 ++ StarDb/Calibrations/ftpc/ftpcVoltageStatus.C | 2 ++ StarDb/Calibrations/rich/richvoltages.C | 2 ++ StarDb/Calibrations/rich/spaceChargeCor.C | 2 ++ StarDb/Calibrations/rich/spaceChargeCorR2.C | 2 ++ .../rich/spaceChargeCorR2.eStar2.C | 2 ++ StarDb/Calibrations/rich/trigDetSums.C | 2 ++ .../svtHybridDriftVelocity.20050120.000001.C | 2 ++ .../svtHybridDriftVelocity.20050120.000027.C | 2 ++ .../svtHybridDriftVelocity.20050217.000027.C | 2 ++ .../svtHybridDriftVelocity.20050310.000027.C | 2 ++ .../svtHybridDriftVelocity.20070206.000001.C | 2 ++ .../svtHybridDriftVelocity.20070321.000209.C | 2 ++ .../svtHybridDriftVelocity.20070524.000201.C | 2 ++ .../svtHybridDriftVelocity.20070524.000210.C | 2 ++ .../Calibrations/svt/svtHybridDriftVelocity.C | 2 ++ .../svt/svtHybridDriftVelocity.y2006.C | 2 ++ StarDb/Calibrations/svt/svtRDOstripped.C | 2 ++ .../Calibrations/svt/svtRDOstripped.y2005d.C | 2 ++ .../Calibrations/svt/svtRDOstripped.y2006.C | 2 ++ StarDb/Calibrations/tof/tofStatus.C | 2 ++ StarDb/Calibrations/tpc/GatingGrid.C | 2 ++ StarDb/Calibrations/tpc/GatingGrid.y2018.C | 2 ++ StarDb/Calibrations/tpc/GatingGrid.y2019.C | 2 ++ StarDb/Calibrations/tpc/GatingGrid.y2022.C | 2 ++ .../tpc/GatingGridB.20190225.230040.C | 2 ++ StarDb/Calibrations/tpc/GatingGridB.C | 2 ++ StarDb/Calibrations/tpc/GatingGridB.y2018.C | 2 ++ StarDb/Calibrations/tpc/GatingGridB.y2019.C | 2 ++ StarDb/Calibrations/tpc/TpcAccumulatedQ.C | 2 ++ .../Calibrations/tpc/TpcAdcCorrection3MDF.C | 2 ++ .../Calibrations/tpc/TpcAdcCorrection4MDF.C | 2 ++ .../Calibrations/tpc/TpcAdcCorrection5MDF.C | 2 ++ .../Calibrations/tpc/TpcAdcCorrection6MDF.C | 2 ++ StarDb/Calibrations/tpc/TpcAdcCorrectionB.C | 2 ++ StarDb/Calibrations/tpc/TpcAdcCorrectionC.C | 2 ++ .../tpc/TpcAdcCorrectionC.y2019.C | 2 ++ StarDb/Calibrations/tpc/TpcAdcCorrectionMDF.C | 2 ++ .../tpc/TpcAdcCorrectionMDF.r2019.C | 2 ++ StarDb/Calibrations/tpc/TpcAdcI.C | 2 ++ StarDb/Calibrations/tpc/TpcAvgCurrent.C | 2 ++ .../tpc/TpcAvgPowerSupply.20190609.132047.C | 2 ++ .../tpc/TpcAvgPowerSupply.y2018.C | 2 ++ .../tpc/TpcAvgPowerSupply.y2019.C | 2 ++ .../tpc/TpcAvgPowerSupply.y2020.C | 2 ++ .../tpc/TpcAvgPowerSupply.y2021.C | 2 ++ .../Calibrations/tpc/TpcCurrentCorrectionX.C | 2 ++ StarDb/Calibrations/tpc/TpcDriftDistOxygen.C | 2 ++ StarDb/Calibrations/tpc/TpcDriftVelRowCor.C | 2 ++ StarDb/Calibrations/tpc/TpcEdge.C | 2 ++ StarDb/Calibrations/tpc/TpcEffectivedX.C | 2 ++ StarDb/Calibrations/tpc/TpcEtaCorrection.C | 2 ++ .../Calibrations/tpc/TpcEtaCorrection.y2019.C | 2 ++ StarDb/Calibrations/tpc/TpcEtaCorrectionB.C | 2 ++ .../Calibrations/tpc/TpcLengthCorrectionB.C | 2 ++ .../Calibrations/tpc/TpcLengthCorrectionMDF.C | 2 ++ .../Calibrations/tpc/TpcLengthCorrectionMDN.C | 2 ++ StarDb/Calibrations/tpc/TpcMultiplicity.C | 2 ++ StarDb/Calibrations/tpc/TpcPadCorrection.C | 2 ++ StarDb/Calibrations/tpc/TpcPadCorrectionMDF.C | 2 ++ .../tpc/TpcPadCorrectionMDF.y2016.C | 2 ++ .../tpc/TpcPadCorrectionMDF.y2018.C | 2 ++ StarDb/Calibrations/tpc/TpcPadPedRMS.C | 2 ++ StarDb/Calibrations/tpc/TpcPadPedRMS.y2022.C | 2 ++ StarDb/Calibrations/tpc/TpcPhiDirection.C | 2 ++ .../TpcResponseSimulator.20141220.000000.C | 2 ++ .../TpcResponseSimulator.20151220.000001.C | 2 ++ .../TpcResponseSimulator.20151220.000002.C | 2 ++ .../TpcResponseSimulator.20171220.000001.C | 2 ++ .../TpcResponseSimulator.20180531.071405.C | 2 ++ .../TpcResponseSimulator.20180531.071409.C | 2 ++ .../TpcResponseSimulator.20180531.071410.C | 2 ++ .../TpcResponseSimulator.20180605.071409.C | 2 ++ .../Calibrations/tpc/TpcResponseSimulator.C | 2 ++ .../tpc/TpcResponseSimulator.r2019.C | 2 ++ .../tpc/TpcResponseSimulator.y2005.C | 2 ++ .../tpc/TpcResponseSimulator.y2009.C | 2 ++ .../tpc/TpcResponseSimulator.y2010.C | 2 ++ .../tpc/TpcResponseSimulator.y2011.C | 2 ++ .../tpc/TpcResponseSimulator.y2012.C | 2 ++ .../tpc/TpcResponseSimulator.y2013.C | 2 ++ .../tpc/TpcResponseSimulator.y2014.C | 2 ++ .../tpc/TpcResponseSimulator.y2015.C | 2 ++ .../tpc/TpcResponseSimulator.y2016.C | 2 ++ .../tpc/TpcResponseSimulator.y2017.C | 2 ++ .../tpc/TpcResponseSimulator.y2018.C | 2 ++ .../tpc/TpcResponseSimulator.y2019.C | 2 ++ .../tpc/TpcResponseSimulator.y2020.C | 2 ++ .../tpc/TpcResponseSimulator.y2021.C | 2 ++ StarDb/Calibrations/tpc/TpcRowQ.C | 2 ++ StarDb/Calibrations/tpc/TpcSecRowB.C | 2 ++ StarDb/Calibrations/tpc/TpcSecRowB.y2018.C | 2 ++ StarDb/Calibrations/tpc/TpcSecRowB.y2019.C | 2 ++ StarDb/Calibrations/tpc/TpcSpaceCharge.C | 2 ++ StarDb/Calibrations/tpc/TpcTanL.C | 2 ++ StarDb/Calibrations/tpc/TpcZCorrectionB.C | 2 ++ StarDb/Calibrations/tpc/TpcZCorrectionC.C | 2 ++ StarDb/Calibrations/tpc/TpcZDC.C | 2 ++ StarDb/Calibrations/tpc/TpcdCharge.C | 2 ++ StarDb/Calibrations/tpc/TpcdEdxCor.C | 2 ++ StarDb/Calibrations/tpc/TpcdXCorrectionB.C | 2 ++ StarDb/Calibrations/tpc/TpcdXdY.C | 2 ++ StarDb/Calibrations/tpc/TpcdZdY.C | 2 ++ StarDb/Calibrations/tpc/TpcnPad.C | 2 ++ StarDb/Calibrations/tpc/TpcnPad.y2019.C | 2 ++ StarDb/Calibrations/tpc/TpcnTbk.C | 2 ++ StarDb/Calibrations/tpc/TpcrCharge.C | 2 ++ .../tpc/itpcDeadFEE.20190416.035540.C | 2 ++ .../tpc/itpcDeadFEE.20190624.011700.C | 2 ++ StarDb/Calibrations/tpc/itpcDeadFEE.C | 2 ++ StarDb/Calibrations/tpc/itpcPadGainT0.C | 2 ++ StarDb/Calibrations/tpc/itpcPadGainT0.y2018.C | 2 ++ StarDb/Calibrations/tpc/itpcPadGainT0.y2019.C | 2 ++ StarDb/Calibrations/tpc/itpcPadGainT0.y2020.C | 2 ++ StarDb/Calibrations/tpc/itpcRDOMap.C | 2 ++ .../Calibrations/tpc/starTriggerDelay.y2019.C | 2 ++ StarDb/Calibrations/tpc/tpcAcCharge.C | 2 ++ .../tpc/tpcAltroParams.20080219.143436.C | 2 ++ .../tpc/tpcAltroParams.20180426.121919.C | 2 ++ .../tpc/tpcAltroParams.20180426.124701.C | 2 ++ StarDb/Calibrations/tpc/tpcAltroParams.C | 2 ++ .../Calibrations/tpc/tpcAltroParams.y2008.C | 2 ++ .../Calibrations/tpc/tpcAltroParams.y2009.C | 2 ++ .../Calibrations/tpc/tpcAltroParams.y2010.C | 2 ++ .../Calibrations/tpc/tpcAltroParams.y2016.C | 2 ++ .../Calibrations/tpc/tpcAltroParams.y2019.C | 2 ++ .../Calibrations/tpc/tpcAltroParams.y2020.C | 2 ++ .../Calibrations/tpc/tpcAltroParams.y2021.C | 2 ++ StarDb/Calibrations/tpc/tpcAnodeHV.C | 2 ++ StarDb/Calibrations/tpc/tpcAnodeHVavg.C | 2 ++ StarDb/Calibrations/tpc/tpcAnodeHVavg.y2018.C | 2 ++ StarDb/Calibrations/tpc/tpcAnodeHVavg.y2019.C | 2 ++ StarDb/Calibrations/tpc/tpcAvCurrent.C | 2 ++ StarDb/Calibrations/tpc/tpcBXT0CorrEPD.C | 2 ++ .../Calibrations/tpc/tpcBXT0CorrEPD.y2016.C | 2 ++ .../Calibrations/tpc/tpcBXT0CorrEPD.y2017.C | 2 ++ .../Calibrations/tpc/tpcBXT0CorrEPD.y2018.C | 2 ++ .../Calibrations/tpc/tpcBXT0CorrEPD.y2019.C | 2 ++ .../Calibrations/tpc/tpcBXT0CorrEPD.y2020.C | 2 ++ StarDb/Calibrations/tpc/tpcDriftVelocity.C | 2 ++ StarDb/Calibrations/tpc/tpcElectronics.C | 2 ++ .../Calibrations/tpc/tpcElectronics.y2001.C | 2 ++ .../Calibrations/tpc/tpcElectronics.y2003.C | 2 ++ .../Calibrations/tpc/tpcElectronics.y2004.C | 2 ++ .../Calibrations/tpc/tpcElectronics.y2005.C | 2 ++ .../Calibrations/tpc/tpcElectronics.y2006.C | 2 ++ .../Calibrations/tpc/tpcElectronics.y2007.C | 2 ++ .../Calibrations/tpc/tpcElectronics.y2008.C | 2 ++ .../Calibrations/tpc/tpcElectronics.y2019.C | 2 ++ .../Calibrations/tpc/tpcExtraGainCorrection.C | 2 ++ .../tpc/tpcExtraGainCorrection.y2022.C | 4 ++- StarDb/Calibrations/tpc/tpcGainCorrection.C | 2 ++ StarDb/Calibrations/tpc/tpcGas.C | 2 ++ StarDb/Calibrations/tpc/tpcGas.y2018.C | 2 ++ StarDb/Calibrations/tpc/tpcGasTemperature.C | 2 ++ StarDb/Calibrations/tpc/tpcGridLeak.C | 2 ++ StarDb/Calibrations/tpc/tpcMethaneIn.C | 2 ++ StarDb/Calibrations/tpc/tpcOmegaTau.C | 2 ++ StarDb/Calibrations/tpc/tpcPadGainT0.C | 2 ++ StarDb/Calibrations/tpc/tpcPadGainT0.y2018.C | 2 ++ .../tpc/tpcPadGainT0B.20180301.000000.C | 2 ++ StarDb/Calibrations/tpc/tpcPadGainT0B.C | 2 ++ StarDb/Calibrations/tpc/tpcPadGainT0B.y2018.C | 2 ++ StarDb/Calibrations/tpc/tpcPadrowT0.C | 2 ++ StarDb/Calibrations/tpc/tpcPressureB.C | 2 ++ StarDb/Calibrations/tpc/tpcRDOMap.C | 2 ++ StarDb/Calibrations/tpc/tpcRDOMap.y2016.C | 2 ++ .../tpc/tpcRDOT0offset.20180312.162439.C | 2 ++ StarDb/Calibrations/tpc/tpcRDOT0offset.C | 2 ++ .../Calibrations/tpc/tpcRDOT0offset.y2019.C | 2 ++ StarDb/Calibrations/tpc/tpcSectorT0offset.C | 2 ++ StarDb/Calibrations/tpc/tpcSlewing.C | 2 ++ StarDb/Calibrations/tpc/tpcStatus.C | 2 ++ StarDb/Calibrations/tpc/tpcT0.C | 2 ++ StarDb/Calibrations/tpc/tpcT0BX.C | 2 ++ StarDb/Calibrations/tpc/tpcTimeDependence.C | 2 ++ StarDb/Calibrations/tpc/tpcWaterOut.C | 2 ++ ...efaultTrackingParameters.20010312.000011.C | 2 ++ .../tracker/DefaultTrackingParameters.C | 2 ++ .../KalmanTrackFinderParameters.y2013.C | 2 ++ .../KalmanTrackFinderParameters.y2014.C | 2 ++ .../KalmanTrackFinderParameters.y2015.C | 2 ++ .../tracker/KalmanTrackFitterParameters.C | 2 ++ .../tracker/LocalTrackSeedFinder.C | 2 ++ .../tracker/PixelHitError.upgr01.C | 2 ++ .../tracker/PixelHitError.upgr15.C | 2 ++ .../tracker/PixelHitError.y2013.C | 2 ++ .../tracker/PixelTrackingParameters.upgr01.C | 2 ++ .../tracker/PixelTrackingParameters.upgr15.C | 2 ++ StarDb/Calibrations/tracker/StvIstHitErrs.C | 2 ++ StarDb/Calibrations/tracker/StvKonst.C | 2 ++ StarDb/Calibrations/tracker/StvPxlHitErrs.C | 2 ++ .../StvTpcInnerHitErrs.20090315.000000.C | 2 ++ .../StvTpcInnerHitErrs.20100101.000000.C | 2 ++ .../Calibrations/tracker/StvTpcInnerHitErrs.C | 2 ++ .../tracker/StvTpcInnerHitErrs.y2009c.C | 2 ++ .../tracker/StvTpcInnerHitErrs.y2010c.C | 2 ++ .../tracker/StvTpcInnerHitErrs.y2011c.C | 2 ++ .../tracker/StvTpcInnerPromptErrs.C | 2 ++ .../StvTpcOuterHitErrs.20090315.000000.C | 2 ++ .../StvTpcOuterHitErrs.20100101.000000.C | 2 ++ .../Calibrations/tracker/StvTpcOuterHitErrs.C | 2 ++ .../tracker/StvTpcOuterHitErrs.y2009c.C | 2 ++ .../tracker/StvTpcOuterHitErrs.y2010c.C | 2 ++ .../tracker/StvTpcOuterHitErrs.y2011c.C | 2 ++ .../tracker/StvTpcOuterPromptErrs.C | 2 ++ .../tracker/ist1HitError.20050101.000000.C | 2 ++ .../tracker/ist1HitError.20050101.000001.C | 2 ++ .../tracker/ist1HitError.upgr15.C | 2 ++ .../tracker/ist2HitError.20050101.000000.C | 2 ++ .../tracker/ist3HitError.20050101.000000.C | 2 ++ .../tracker/tkf_tkfpar.20011201.000100.C | 2 ++ .../tracker/tkf_tkfpar.20050324.150000.C | 2 ++ StarDb/Calibrations/tracker/tkf_tkfpar.C | 2 ++ .../tpcInnerHitError.20091215.000003.C | 2 ++ .../tpcInnerHitError.20100101.000000.C | 2 ++ .../Calibrations/tracker/tpcInnerHitError.C | 2 ++ .../tracker/tpcInnerHitError.y2009c.C | 2 ++ .../tracker/tpcInnerHitError.y2010c.C | 2 ++ .../tracker/tpcInnerHitError.y2011c.C | 2 ++ .../tpcOuterHitError.20091215.000003.C | 2 ++ .../tpcOuterHitError.20100101.000000.C | 2 ++ .../Calibrations/tracker/tpcOuterHitError.C | 2 ++ .../tracker/tpcOuterHitError.y2009c.C | 2 ++ .../tracker/tpcOuterHitError.y2010c.C | 2 ++ .../tracker/tpcOuterHitError.y2011c.C | 2 ++ .../tpcTrackingParameters.20010312.000011.C | 2 ++ .../Geometry/fst/fstOnTpc.20211110.000001.C | 2 ++ .../fst/fstSensorOnWedge.20211110.000001.C | 2 ++ .../fst/fstWedgeOnHss.20211110.000001.C | 2 ++ .../Geometry/fst/hssOnFst.20211110.000001.C | 2 ++ StarDb/Geometry/ftpc/ftpcAsicMap.C | 2 ++ StarDb/Geometry/ftpc/ftpcClusterGeom.C | 2 ++ StarDb/Geometry/ftpc/ftpcInnerCathode.C | 2 ++ .../istLadderOnIstMisalign.20131210.000001.C | 2 ++ .../istLadderOnIstMisalign.20140101.000001.C | 2 ++ .../istLadderOnIstMisalign.20141210.000001.C | 2 ++ .../istLadderOnIstMisalign.20150101.000001.C | 2 ++ .../istLadderOnIstMisalign.20151210.000001.C | 2 ++ .../istLadderOnIstMisalign.20160101.000001.C | 2 ++ ...xlLadderOnSectorMisalign.20131210.000001.C | 2 ++ ...xlLadderOnSectorMisalign.20140101.000000.C | 2 ++ ...xlLadderOnSectorMisalign.20141210.000001.C | 2 ++ ...xlLadderOnSectorMisalign.20150101.000001.C | 2 ++ ...xlLadderOnSectorMisalign.20151210.000001.C | 2 ++ ...xlLadderOnSectorMisalign.20160101.000001.C | 2 ++ StarDb/Geometry/ssd/SsdLaddersOnSectors.C | 2 ++ .../Geometry/ssd/SsdLaddersOnSectors.y2005.C | 2 ++ .../Geometry/ssd/SsdLaddersOnSectors.y2006.C | 2 ++ .../Geometry/ssd/SsdLaddersOnSectors.y2007.C | 2 ++ StarDb/Geometry/ssd/SsdOnGlobal.C | 2 ++ StarDb/Geometry/ssd/SsdOnGlobal.y2005.C | 2 ++ StarDb/Geometry/ssd/SsdOnGlobal.y2006.C | 2 ++ StarDb/Geometry/ssd/SsdOnGlobal.y2007.C | 2 ++ StarDb/Geometry/ssd/SsdSectorsOnGlobal.C | 2 ++ .../Geometry/ssd/SsdSectorsOnGlobal.y2005.C | 2 ++ .../Geometry/ssd/SsdSectorsOnGlobal.y2006.C | 2 ++ .../Geometry/ssd/SsdSectorsOnGlobal.y2007.C | 2 ++ StarDb/Geometry/ssd/SsdWafersOnLadders.C | 2 ++ .../Geometry/ssd/SsdWafersOnLadders.y2005.C | 2 ++ .../Geometry/ssd/SsdWafersOnLadders.y2006.C | 2 ++ .../Geometry/ssd/SsdWafersOnLadders.y2007.C | 2 ++ .../sstLadderOnSstMisalign.20131210.000001.C | 2 ++ .../sstLadderOnSstMisalign.20140101.000001.C | 2 ++ .../sstLadderOnSstMisalign.20141210.000001.C | 2 ++ .../sstLadderOnSstMisalign.20150101.000001.C | 2 ++ .../sstLadderOnSstMisalign.20151210.000001.C | 2 ++ .../sstLadderOnSstMisalign.20160101.000001.C | 2 ++ StarDb/Geometry/svt/LadderOnShell.C | 2 ++ StarDb/Geometry/svt/LadderOnShell.y2005.C | 2 ++ StarDb/Geometry/svt/LadderOnShell.y2006.C | 2 ++ StarDb/Geometry/svt/LadderOnShell.y2007.C | 2 ++ StarDb/Geometry/svt/LadderOnSurvey.y2001.C | 2 ++ StarDb/Geometry/svt/LadderOnSurvey.y2005.C | 2 ++ StarDb/Geometry/svt/LadderOnSurvey.y2006.C | 2 ++ StarDb/Geometry/svt/LadderOnSurvey.y2007.C | 2 ++ StarDb/Geometry/svt/ShellOnGlobal.y2001.C | 2 ++ StarDb/Geometry/svt/ShellOnGlobal.y2005.C | 2 ++ StarDb/Geometry/svt/ShellOnGlobal.y2006.C | 2 ++ StarDb/Geometry/svt/ShellOnGlobal.y2007.C | 2 ++ StarDb/Geometry/svt/SvtOnGlobal.y2001.C | 2 ++ StarDb/Geometry/svt/SvtOnGlobal.y2005.C | 2 ++ StarDb/Geometry/svt/SvtOnGlobal.y2006.C | 2 ++ StarDb/Geometry/svt/SvtOnGlobal.y2007.C | 2 ++ StarDb/Geometry/svt/WaferOnLadder.y2001.C | 2 ++ StarDb/Geometry/svt/WaferOnLadder.y2005.C | 2 ++ StarDb/Geometry/svt/WaferOnLadder.y2006.C | 2 ++ StarDb/Geometry/svt/WaferOnLadder.y2007.C | 2 ++ StarDb/Geometry/tpc/TpcHalfPosition.C | 2 ++ StarDb/Geometry/tpc/TpcHalfPosition.y2019.C | 2 ++ StarDb/Geometry/tpc/TpcInnerSectorPosition.C | 2 ++ StarDb/Geometry/tpc/TpcInnerSectorPositionB.C | 2 ++ .../tpc/TpcInnerSectorPositionB.y2016.C | 2 ++ StarDb/Geometry/tpc/TpcOuterSectorPosition.C | 2 ++ StarDb/Geometry/tpc/TpcOuterSectorPositionB.C | 2 ++ StarDb/Geometry/tpc/TpcPosition.C | 2 ++ StarDb/Geometry/tpc/TpcSuperSectorPosition.C | 2 ++ StarDb/Geometry/tpc/TpcSuperSectorPositionB.C | 2 ++ .../tpc/TpcSuperSectorPositionB.y2019.C | 2 ++ StarDb/Geometry/tpc/iTPCSurvey.C | 2 ++ StarDb/Geometry/tpc/iTPCSurvey.y2019.C | 2 ++ StarDb/Geometry/tpc/itpcPadPlanes.C | 2 ++ StarDb/Geometry/tpc/tpcGlobalPosition.C | 2 ++ StarDb/Geometry/tpc/tpcPadConfig.C | 2 ++ StarDb/Geometry/tpc/tpcPadConfig.y2018.C | 2 ++ StarDb/Geometry/tpc/tpcPadConfig.y2019.C | 2 ++ StarDb/Geometry/tpc/tpcPadPlanes.C | 2 ++ StarDb/RunLog/MagFactor.y2011.C | 2 ++ StarDb/RunLog/MagFactor.y2012.C | 2 ++ StarDb/RunLog/MagFactor.y2013.C | 2 ++ StarDb/RunLog/MagFactor.y2014.C | 2 ++ StarDb/RunLog/onl/beamInfo.C | 2 ++ StarDb/RunLog/onl/starClockOnl.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2001.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2003.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2004.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2005.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2006.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2007.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2008.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2009.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2010.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2011.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2012.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2013.C | 2 ++ StarDb/RunLog/onl/starClockOnl.y2014.C | 2 ++ StarDb/RunLog/onl/starMagOnl.C | 2 ++ StarDb/RunLog/onl/tpcRDOMasks.C | 2 ++ StarDb/RunLog/onl/triggerID.C | 2 ++ StarDb/StMagF/MagFieldRotation.y2013.C | 2 ++ StarDb/StMagF/MagFieldRotation.y2014.C | 2 ++ StarDb/ctf/ctg/ctb.C | 2 ++ StarDb/ctf/ctg/ctb_slat.C | 2 ++ StarDb/ctf/ctg/ctb_slat_eta.C | 2 ++ StarDb/ctf/ctg/ctb_slat_phi.C | 2 ++ StarDb/ctf/ctg/tof.C | 2 ++ StarDb/ctf/ctg/tof_slat.C | 2 ++ StarDb/ctf/ctg/tof_slat_eta.C | 2 ++ StarDb/ctf/ctg/tof_slat_phi.C | 2 ++ StarDb/ctf/cts/cts_ctb.C | 2 ++ StarDb/ctf/cts/cts_tof.C | 2 ++ StarDb/ebye/sca/sca_const.C | 2 ++ StarDb/ebye/sca/sca_filter_const.C | 2 ++ StarDb/ebye/sca/sca_switch.C | 2 ++ StarDb/emc/cal/ems_cal_control.C | 2 ++ StarDb/emc/cal/org_ped_bemc.C | 2 ++ StarDb/emc/cal/org_ped_bemc_h.C | 2 ++ StarDb/emc/cal/org_ped_bprs.C | 2 ++ StarDb/emc/cal/org_ped_bprs_h.C | 2 ++ StarDb/emc/cal/org_ped_bsmde.C | 2 ++ StarDb/emc/cal/org_ped_bsmde_h.C | 2 ++ StarDb/emc/cal/org_ped_bsmdp.C | 2 ++ StarDb/emc/cal/org_ped_bsmdp_h.C | 2 ++ StarDb/emc/cal/org_ped_eemc.C | 2 ++ StarDb/emc/cal/org_ped_eemc_h.C | 2 ++ StarDb/emc/cal/org_ped_eprs.C | 2 ++ StarDb/emc/cal/org_ped_eprs_h.C | 2 ++ StarDb/emc/cal/org_slp_bemc.C | 2 ++ StarDb/emc/cal/org_slp_bemc_h.C | 2 ++ StarDb/emc/cal/org_slp_bprs.C | 2 ++ StarDb/emc/cal/org_slp_bprs_h.C | 2 ++ StarDb/emc/cal/org_slp_bsmde.C | 2 ++ StarDb/emc/cal/org_slp_bsmde_h.C | 2 ++ StarDb/emc/cal/org_slp_bsmdp.C | 2 ++ StarDb/emc/cal/org_slp_bsmdp_h.C | 2 ++ StarDb/emc/cal/org_slp_eemc.C | 2 ++ StarDb/emc/cal/org_slp_eemc_h.C | 2 ++ StarDb/emc/cal/org_slp_eprs.C | 2 ++ StarDb/emc/cal/org_slp_eprs_h.C | 2 ++ StarDb/emc/ems/control_toadc.C | 2 ++ StarDb/emc/ems/ems_control.C | 2 ++ StarDb/emc/jet/emc_egrid_par.C | 2 ++ StarDb/emc/jet/emc_jetpar.C | 2 ++ StarDb/emc/simulator/Simulator.C | 2 ++ .../emc/simulator/controlEmcSimulatorMaker.C | 2 ++ StarDb/ftpc/ftpcClusterPars.C | 2 ++ StarDb/ftpc/ftpcFastSimGas.C | 2 ++ StarDb/ftpc/ftpcFastSimPars.C | 2 ++ StarDb/ftpc/ftpcSlowSimGas.C | 2 ++ StarDb/ftpc/ftpcSlowSimPars.C | 2 ++ StarDb/ftpc/ftpcTrackingPars.C | 2 ++ StarDb/ftpc/ftpcdEdxPars.C | 2 ++ .../global/vertices/ev0par2.19960101.000000.C | 2 ++ .../global/vertices/ev0par2.20011201.000000.C | 2 ++ .../global/vertices/ev0par2.20011201.000100.C | 2 ++ .../global/vertices/ev0par2.20020201.000000.C | 2 ++ .../global/vertices/ev0par2.20021115.000000.C | 2 ++ .../global/vertices/ev0par2.20031201.000000.C | 2 ++ .../global/vertices/ev0par2.20040325.023200.C | 2 ++ .../global/vertices/ev0par2.20050324.150000.C | 2 ++ .../global/vertices/ev0par2.20070301.000000.C | 2 ++ .../global/vertices/ev0par2.20071125.000000.C | 2 ++ .../global/vertices/exipar.19960101.000000.C | 2 ++ .../global/vertices/exipar.20011201.000000.C | 2 ++ .../global/vertices/exipar.20011201.000100.C | 2 ++ .../global/vertices/exipar.20020201.000000.C | 2 ++ .../global/vertices/exipar.20021115.000000.C | 2 ++ .../global/vertices/exipar.20031201.000000.C | 2 ++ .../global/vertices/exipar.20040325.023200.C | 2 ++ .../global/vertices/exipar.20050324.150000.C | 2 ++ .../global/vertices/exipar.20070301.000000.C | 2 ++ .../global/vertices/exipar.20071125.000000.C | 2 ++ StarDb/global/vertices/stk_vtx.C | 2 ++ StarDb/global/vertices/stk_vtx_direct.C | 2 ++ StarDb/mwc/mwcpars/cal.C | 2 ++ StarDb/mwc/mwcpars/geom.C | 2 ++ StarDb/mwc/mwcpars/mpar.C | 2 ++ StarDb/svt/sgrpars/pix_info.C | 2 ++ StarDb/svt/sprpars/sprpar.C | 2 ++ StarDb/svt/srspars/srs_activea.C | 2 ++ StarDb/svt/srspars/srs_srspar.C | 2 ++ StarDb/svt/ssd/sce_ctrl.C | 36 ------------------- StarDb/svt/ssd/scf_ctrl.C | 17 --------- StarDb/svt/ssd/scm_ctrl.C | 19 ---------- StarDb/svt/ssd/sdm_calib_par.C | 2 ++ StarDb/svt/ssd/sdm_condition_par.C | 2 ++ StarDb/svt/ssd/sdm_geom_par.C | 2 ++ StarDb/svt/ssd/sls_ctrl.C | 28 --------------- StarDb/svt/stkpars/stk_filler.C | 2 ++ StarDb/svt/svgpars/config.C | 2 ++ StarDb/svt/svgpars/geom.C | 2 ++ StarDb/svt/svgpars/geomy1l.C | 2 ++ StarDb/svt/svgpars/shape.C | 2 ++ StarDb/tpc/fmtpars/fmtpar.C | 2 ++ StarDb/tpc/tclpars/tclpar.C | 2 ++ StarDb/tpc/tclpars/type.C | 2 ++ StarDb/tpc/tfspars/tfs_fsctrl.C | 2 ++ StarDb/tpc/tfspars/tfs_fspar.C | 2 ++ StarDb/tpc/tidpars/tdeparm.C | 2 ++ StarDb/tpc/tidpars/tpipar.C | 2 ++ StarDb/tpc/tptpars/tpt_pars.20000217.000000.C | 2 ++ StarDb/tpc/tptpars/tpt_pars.20000301.000005.C | 2 ++ StarDb/tpc/tptpars/tpt_pars.er99.C | 2 ++ StarDb/tpc/tptpars/tpt_pars.sd97.C | 2 ++ StarDb/tpc/tptpars/tpt_pars.year_1a.C | 2 ++ StarDb/tpc/tptpars/tpt_pars.year_1c.C | 2 ++ StarDb/tpc/tptpars/tpt_pars.year_1h.C | 2 ++ StarDb/tpc/tptpars/tpt_pars.year_2a.C | 2 ++ StarDb/tpc/tptpars/tpt_spars.C | 2 ++ StarDb/tpc/tsspars/tsspar.19991216.000000.C | 2 ++ StarDb/tpc/tsspars/tsspar.19991217.000000.C | 2 ++ StarDb/tpc/tsspars/tsspar.er99.C | 2 ++ StarDb/tpc/tsspars/tsspar.es99.C | 2 ++ StarDb/tpc/tsspars/tsspar.sd97.C | 2 ++ StarDb/tpc/tsspars/tsspar.y2018.C | 2 ++ StarDb/tpc/tsspars/tsspar.y2019.C | 2 ++ StarDb/tpc/tsspars/tsspar.year_1a.C | 2 ++ StarDb/tpc/tsspars/tsspar.year_1c.C | 2 ++ StarDb/tpc/ttepars/tte_control.C | 2 ++ 455 files changed, 904 insertions(+), 104 deletions(-) delete mode 100644 StarDb/svt/ssd/sce_ctrl.C delete mode 100644 StarDb/svt/ssd/scf_ctrl.C delete mode 100644 StarDb/svt/ssd/scm_ctrl.C delete mode 100644 StarDb/svt/ssd/sls_ctrl.C diff --git a/.github/workflows/build-pull-request.yml b/.github/workflows/build-pull-request.yml index de35582787f..9e241e4bf07 100644 --- a/.github/workflows/build-pull-request.yml +++ b/.github/workflows/build-pull-request.yml @@ -116,13 +116,13 @@ jobs: docker run --volumes-from star-test-data ghcr.io/star-bnl/star-sw-${{ env.STARENV }} \ sh -c "set -e; $TEST_CMD 2>&1 | tee log; grep ' StIO:' log" - ROOT6_test_ignore_fail: + ROOT6_test: runs-on: ubuntu-latest needs: build strategy: fail-fast: false matrix: - test_id: [50, 52, 54, 90, 91, 92, 119, 120] + test_id: [10, 11, 22, 23, 24, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 76, 77, 78, 90, 91, 92, 102, 103, 119, 120, 121, 122, 123] env: STARENV: root6-gcc485 steps: @@ -137,4 +137,4 @@ jobs: - run: | TEST_CMD=$(docker run --rm ghcr.io/star-bnl/star-sw-${{ env.STARENV }} tests/executest.py -c ${{ matrix.test_id }}) docker run --volumes-from star-test-data ghcr.io/star-bnl/star-sw-${{ env.STARENV }} \ - sh -c "MALLOC_CHECK_=3 $TEST_CMD || echo 'Failed with an exit code: '\$?" + sh -l -c "module unload kfparticle-1.1-root-6.16.00; MALLOC_CHECK_=3 $TEST_CMD" diff --git a/StarDb/Calibrations/ftpc/ftpcCoordTrans.C b/StarDb/Calibrations/ftpc/ftpcCoordTrans.C index d4608c768c3..fad3dfb6f76 100644 --- a/StarDb/Calibrations/ftpc/ftpcCoordTrans.C +++ b/StarDb/Calibrations/ftpc/ftpcCoordTrans.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcCoordTrans_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/ftpc/.ftpcCoordTrans/ftpcCoordTrans Allocated rows: 1 Used rows: 1 Row size: 16 bytes diff --git a/StarDb/Calibrations/ftpc/ftpcTemps.devE.C b/StarDb/Calibrations/ftpc/ftpcTemps.devE.C index 033596ce752..bba15262002 100644 --- a/StarDb/Calibrations/ftpc/ftpcTemps.devE.C +++ b/StarDb/Calibrations/ftpc/ftpcTemps.devE.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcTemps_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_ftpcTemps")) return 0; ftpcTemps_st row; diff --git a/StarDb/Calibrations/ftpc/ftpcTemps.eStar2.C b/StarDb/Calibrations/ftpc/ftpcTemps.eStar2.C index 033596ce752..bba15262002 100644 --- a/StarDb/Calibrations/ftpc/ftpcTemps.eStar2.C +++ b/StarDb/Calibrations/ftpc/ftpcTemps.eStar2.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcTemps_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_ftpcTemps")) return 0; ftpcTemps_st row; diff --git a/StarDb/Calibrations/ftpc/ftpcTemps.y2010.C b/StarDb/Calibrations/ftpc/ftpcTemps.y2010.C index 033596ce752..bba15262002 100644 --- a/StarDb/Calibrations/ftpc/ftpcTemps.y2010.C +++ b/StarDb/Calibrations/ftpc/ftpcTemps.y2010.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcTemps_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_ftpcTemps")) return 0; ftpcTemps_st row; diff --git a/StarDb/Calibrations/ftpc/ftpcTemps.y2011.C b/StarDb/Calibrations/ftpc/ftpcTemps.y2011.C index 033596ce752..bba15262002 100644 --- a/StarDb/Calibrations/ftpc/ftpcTemps.y2011.C +++ b/StarDb/Calibrations/ftpc/ftpcTemps.y2011.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcTemps_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_ftpcTemps")) return 0; ftpcTemps_st row; diff --git a/StarDb/Calibrations/ftpc/ftpcVoltage.C b/StarDb/Calibrations/ftpc/ftpcVoltage.C index aae48774dae..6b7c5f486c7 100644 --- a/StarDb/Calibrations/ftpc/ftpcVoltage.C +++ b/StarDb/Calibrations/ftpc/ftpcVoltage.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcVoltage_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/ftpc/.ftpcVoltage/ftpcVoltage Allocated rows: 1 Used rows: 1 Row size: 116 bytes diff --git a/StarDb/Calibrations/ftpc/ftpcVoltageStatus.C b/StarDb/Calibrations/ftpc/ftpcVoltageStatus.C index 979917675b2..d548d54fad9 100644 --- a/StarDb/Calibrations/ftpc/ftpcVoltageStatus.C +++ b/StarDb/Calibrations/ftpc/ftpcVoltageStatus.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcVoltageStatus_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/ftpc/.ftpcVoltageStatus/ftpcVoltageStatus Allocated rows: 1 Used rows: 1 Row size: 20 bytes diff --git a/StarDb/Calibrations/rich/richvoltages.C b/StarDb/Calibrations/rich/richvoltages.C index ad66a54b425..d984eaaf25e 100644 --- a/StarDb/Calibrations/rich/richvoltages.C +++ b/StarDb/Calibrations/rich/richvoltages.C @@ -1,3 +1,5 @@ +#include "tables/St_richvoltages_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/rich/.richvoltages/richvoltages Allocated rows: 1 Used rows: 1 Row size: 16 bytes diff --git a/StarDb/Calibrations/rich/spaceChargeCor.C b/StarDb/Calibrations/rich/spaceChargeCor.C index 7c856ac764e..07702bd2b99 100644 --- a/StarDb/Calibrations/rich/spaceChargeCor.C +++ b/StarDb/Calibrations/rich/spaceChargeCor.C @@ -1,3 +1,5 @@ +#include "tables/St_spaceChargeCor_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/rich/.spaceChargeCor/spaceChargeCor Allocated rows: 1 Used rows: 1 Row size: 60 bytes diff --git a/StarDb/Calibrations/rich/spaceChargeCorR2.C b/StarDb/Calibrations/rich/spaceChargeCorR2.C index 4431d5f9667..9f70bcec998 100644 --- a/StarDb/Calibrations/rich/spaceChargeCorR2.C +++ b/StarDb/Calibrations/rich/spaceChargeCorR2.C @@ -1,3 +1,5 @@ +#include "tables/St_spaceChargeCor_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/rich/.spaceChargeCorR2/spaceChargeCorR2 Allocated rows: 1 Used rows: 1 Row size: 60 bytes diff --git a/StarDb/Calibrations/rich/spaceChargeCorR2.eStar2.C b/StarDb/Calibrations/rich/spaceChargeCorR2.eStar2.C index 4431d5f9667..9f70bcec998 100644 --- a/StarDb/Calibrations/rich/spaceChargeCorR2.eStar2.C +++ b/StarDb/Calibrations/rich/spaceChargeCorR2.eStar2.C @@ -1,3 +1,5 @@ +#include "tables/St_spaceChargeCor_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/rich/.spaceChargeCorR2/spaceChargeCorR2 Allocated rows: 1 Used rows: 1 Row size: 60 bytes diff --git a/StarDb/Calibrations/rich/trigDetSums.C b/StarDb/Calibrations/rich/trigDetSums.C index a012c8d1f70..0ea0e598f96 100644 --- a/StarDb/Calibrations/rich/trigDetSums.C +++ b/StarDb/Calibrations/rich/trigDetSums.C @@ -1,3 +1,5 @@ +#include "tables/St_trigDetSums_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/rich/.trigDetSums/trigDetSums Allocated rows: 1 Used rows: 1 Row size: 144 bytes diff --git a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050120.000001.C b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050120.000001.C index d14b6c2e774..f9721c5ea86 100644 --- a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050120.000001.C +++ b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050120.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_svtHybridDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtHybridDriftVelocity")) return 0; const double drift_dist = 29928.; //in microns diff --git a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050120.000027.C b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050120.000027.C index eae30ad1e96..aa21e7bc5d4 100644 --- a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050120.000027.C +++ b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050120.000027.C @@ -1,3 +1,5 @@ +#include "tables/St_svtHybridDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtHybridDriftVelocity")) return 0; svtHybridDriftVelocity_st row[344] = {//Pass126 021M diff --git a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050217.000027.C b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050217.000027.C index e4d414e51c6..3dc55265fd5 100644 --- a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050217.000027.C +++ b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050217.000027.C @@ -1,3 +1,5 @@ +#include "tables/St_svtHybridDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtHybridDriftVelocity")) return 0; svtHybridDriftVelocity_st row[344] = {//Pass126 049M diff --git a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050310.000027.C b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050310.000027.C index d27f4fdc4fe..ba8c22960dc 100644 --- a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050310.000027.C +++ b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20050310.000027.C @@ -1,3 +1,5 @@ +#include "tables/St_svtHybridDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtHybridDriftVelocity")) return 0; svtHybridDriftVelocity_st row[293] = {//Pass126 Cu62M diff --git a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070206.000001.C b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070206.000001.C index f2d56bf5a72..2436caee6c4 100644 --- a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070206.000001.C +++ b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070206.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_svtHybridDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtHybridDriftVelocity")) return 0; svtHybridDriftVelocity_st row[376] = {//~kotov/public/macros/drift/AuAu2007120/tfit_AuAu2007_120_db.txt diff --git a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070321.000209.C b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070321.000209.C index d93ed16bb5c..3789511b6f9 100644 --- a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070321.000209.C +++ b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070321.000209.C @@ -1,3 +1,5 @@ +#include "tables/St_svtHybridDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtHybridDriftVelocity")) return 0; svtHybridDriftVelocity_st row[314] = {//Clean up diff --git a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070524.000201.C b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070524.000201.C index 97dde67a47c..2f040cda614 100644 --- a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070524.000201.C +++ b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070524.000201.C @@ -1,3 +1,5 @@ +#include "tables/St_svtHybridDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtHybridDriftVelocity")) return 0; svtHybridDriftVelocity_st row[292] = {//Pass217 RFJ diff --git a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070524.000210.C b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070524.000210.C index c9c884d119b..32338d553c3 100644 --- a/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070524.000210.C +++ b/StarDb/Calibrations/svt/svtHybridDriftVelocity.20070524.000210.C @@ -1,3 +1,5 @@ +#include "tables/St_svtHybridDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtHybridDriftVelocity")) return 0; svtHybridDriftVelocity_st row[287] = {//Pass217 RFS Cleaned diff --git a/StarDb/Calibrations/svt/svtHybridDriftVelocity.C b/StarDb/Calibrations/svt/svtHybridDriftVelocity.C index b412940ed9e..b2e7034b75c 100644 --- a/StarDb/Calibrations/svt/svtHybridDriftVelocity.C +++ b/StarDb/Calibrations/svt/svtHybridDriftVelocity.C @@ -1,3 +1,5 @@ +#include "tables/St_svtHybridDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtHybridDriftVelocity")) return 0; const double drift_dist = 29928.; //in microns diff --git a/StarDb/Calibrations/svt/svtHybridDriftVelocity.y2006.C b/StarDb/Calibrations/svt/svtHybridDriftVelocity.y2006.C index b412940ed9e..b2e7034b75c 100644 --- a/StarDb/Calibrations/svt/svtHybridDriftVelocity.y2006.C +++ b/StarDb/Calibrations/svt/svtHybridDriftVelocity.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_svtHybridDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtHybridDriftVelocity")) return 0; const double drift_dist = 29928.; //in microns diff --git a/StarDb/Calibrations/svt/svtRDOstripped.C b/StarDb/Calibrations/svt/svtRDOstripped.C index dbc4788f262..6f77367ba58 100644 --- a/StarDb/Calibrations/svt/svtRDOstripped.C +++ b/StarDb/Calibrations/svt/svtRDOstripped.C @@ -1,3 +1,5 @@ +#include "tables/St_svtRDOstripped_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtRDOstripped")) return 0; svtRDOstripped_st row[72] = { diff --git a/StarDb/Calibrations/svt/svtRDOstripped.y2005d.C b/StarDb/Calibrations/svt/svtRDOstripped.y2005d.C index dbc4788f262..6f77367ba58 100644 --- a/StarDb/Calibrations/svt/svtRDOstripped.y2005d.C +++ b/StarDb/Calibrations/svt/svtRDOstripped.y2005d.C @@ -1,3 +1,5 @@ +#include "tables/St_svtRDOstripped_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtRDOstripped")) return 0; svtRDOstripped_st row[72] = { diff --git a/StarDb/Calibrations/svt/svtRDOstripped.y2006.C b/StarDb/Calibrations/svt/svtRDOstripped.y2006.C index dbc4788f262..6f77367ba58 100644 --- a/StarDb/Calibrations/svt/svtRDOstripped.y2006.C +++ b/StarDb/Calibrations/svt/svtRDOstripped.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_svtRDOstripped_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_svtRDOstripped")) return 0; svtRDOstripped_st row[72] = { diff --git a/StarDb/Calibrations/tof/tofStatus.C b/StarDb/Calibrations/tof/tofStatus.C index 1ff576d3a89..9ac29300b12 100644 --- a/StarDb/Calibrations/tof/tofStatus.C +++ b/StarDb/Calibrations/tof/tofStatus.C @@ -1,3 +1,5 @@ +#include "tables/St_tofStatus_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/tof/.tofStatus/tofStatus Allocated rows: 1 Used rows: 1 Row size: 48000 bytes diff --git a/StarDb/Calibrations/tpc/GatingGrid.C b/StarDb/Calibrations/tpc/GatingGrid.C index 9165c310692..e1da6e2e50a 100644 --- a/StarDb/Calibrations/tpc/GatingGrid.C +++ b/StarDb/Calibrations/tpc/GatingGrid.C @@ -1,3 +1,5 @@ +#include "tables/St_GatingGrid_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_GatingGrid")) return 0; /* diff --git a/StarDb/Calibrations/tpc/GatingGrid.y2018.C b/StarDb/Calibrations/tpc/GatingGrid.y2018.C index 585a5c670f7..2a1026f4b2e 100644 --- a/StarDb/Calibrations/tpc/GatingGrid.y2018.C +++ b/StarDb/Calibrations/tpc/GatingGrid.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_GatingGrid_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_GatingGrid")) return 0; /* diff --git a/StarDb/Calibrations/tpc/GatingGrid.y2019.C b/StarDb/Calibrations/tpc/GatingGrid.y2019.C index 9165c310692..e1da6e2e50a 100644 --- a/StarDb/Calibrations/tpc/GatingGrid.y2019.C +++ b/StarDb/Calibrations/tpc/GatingGrid.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_GatingGrid_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_GatingGrid")) return 0; /* diff --git a/StarDb/Calibrations/tpc/GatingGrid.y2022.C b/StarDb/Calibrations/tpc/GatingGrid.y2022.C index 9766d4ec07b..ce53f436187 100644 --- a/StarDb/Calibrations/tpc/GatingGrid.y2022.C +++ b/StarDb/Calibrations/tpc/GatingGrid.y2022.C @@ -1,3 +1,5 @@ +#include "tables/St_GatingGrid_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_GatingGrid")) return 0; /* diff --git a/StarDb/Calibrations/tpc/GatingGridB.20190225.230040.C b/StarDb/Calibrations/tpc/GatingGridB.20190225.230040.C index ba26f07546d..4240f0a88d3 100644 --- a/StarDb/Calibrations/tpc/GatingGridB.20190225.230040.C +++ b/StarDb/Calibrations/tpc/GatingGridB.20190225.230040.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcCorrection")) return 0; /* diff --git a/StarDb/Calibrations/tpc/GatingGridB.C b/StarDb/Calibrations/tpc/GatingGridB.C index 208936f0f59..3c89d31783e 100644 --- a/StarDb/Calibrations/tpc/GatingGridB.C +++ b/StarDb/Calibrations/tpc/GatingGridB.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcCorrection")) return 0; /* diff --git a/StarDb/Calibrations/tpc/GatingGridB.y2018.C b/StarDb/Calibrations/tpc/GatingGridB.y2018.C index a34f69cc66a..f10e95db3ef 100644 --- a/StarDb/Calibrations/tpc/GatingGridB.y2018.C +++ b/StarDb/Calibrations/tpc/GatingGridB.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcCorrection")) return 0; /* diff --git a/StarDb/Calibrations/tpc/GatingGridB.y2019.C b/StarDb/Calibrations/tpc/GatingGridB.y2019.C index 208936f0f59..3c89d31783e 100644 --- a/StarDb/Calibrations/tpc/GatingGridB.y2019.C +++ b/StarDb/Calibrations/tpc/GatingGridB.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcCorrection")) return 0; /* diff --git a/StarDb/Calibrations/tpc/TpcAccumulatedQ.C b/StarDb/Calibrations/tpc/TpcAccumulatedQ.C index 615712e2c61..c9dc3800c72 100644 --- a/StarDb/Calibrations/tpc/TpcAccumulatedQ.C +++ b/StarDb/Calibrations/tpc/TpcAccumulatedQ.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcAdcCorrection3MDF.C b/StarDb/Calibrations/tpc/TpcAdcCorrection3MDF.C index 521edfbce9a..4532895e970 100644 --- a/StarDb/Calibrations/tpc/TpcAdcCorrection3MDF.C +++ b/StarDb/Calibrations/tpc/TpcAdcCorrection3MDF.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection3_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection3")) return 0; Int_t nrows = 1; diff --git a/StarDb/Calibrations/tpc/TpcAdcCorrection4MDF.C b/StarDb/Calibrations/tpc/TpcAdcCorrection4MDF.C index 48d80e360dd..e9cdb7b5739 100644 --- a/StarDb/Calibrations/tpc/TpcAdcCorrection4MDF.C +++ b/StarDb/Calibrations/tpc/TpcAdcCorrection4MDF.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection4_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection4")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcAdcCorrection5MDF.C b/StarDb/Calibrations/tpc/TpcAdcCorrection5MDF.C index 51cca59885a..2ce107a2686 100644 --- a/StarDb/Calibrations/tpc/TpcAdcCorrection5MDF.C +++ b/StarDb/Calibrations/tpc/TpcAdcCorrection5MDF.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection4_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection4")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcAdcCorrection6MDF.C b/StarDb/Calibrations/tpc/TpcAdcCorrection6MDF.C index 4df21dff983..b84bb093d4b 100644 --- a/StarDb/Calibrations/tpc/TpcAdcCorrection6MDF.C +++ b/StarDb/Calibrations/tpc/TpcAdcCorrection6MDF.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection4_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection4")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcAdcCorrectionB.C b/StarDb/Calibrations/tpc/TpcAdcCorrectionB.C index fc3f8cad927..2bf5e242b3a 100644 --- a/StarDb/Calibrations/tpc/TpcAdcCorrectionB.C +++ b/StarDb/Calibrations/tpc/TpcAdcCorrectionB.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/Calibrations/tpc/.TpcAdcCorrectionB/TpcAdcCorrectionB Allocated rows: 50 Used rows: 50 Row size: 120 bytes diff --git a/StarDb/Calibrations/tpc/TpcAdcCorrectionC.C b/StarDb/Calibrations/tpc/TpcAdcCorrectionC.C index fc922bc638f..f96e54e38f5 100644 --- a/StarDb/Calibrations/tpc/TpcAdcCorrectionC.C +++ b/StarDb/Calibrations/tpc/TpcAdcCorrectionC.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; tpcCorrection_st row; diff --git a/StarDb/Calibrations/tpc/TpcAdcCorrectionC.y2019.C b/StarDb/Calibrations/tpc/TpcAdcCorrectionC.y2019.C index 14ae5e8fe41..f2eb0c7ad51 100644 --- a/StarDb/Calibrations/tpc/TpcAdcCorrectionC.y2019.C +++ b/StarDb/Calibrations/tpc/TpcAdcCorrectionC.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/Calibrations/tpc/.TpcAdcCorrectionC/TpcAdcCorrectionC Allocated rows: 50 Used rows: 50 Row size: 120 bytes diff --git a/StarDb/Calibrations/tpc/TpcAdcCorrectionMDF.C b/StarDb/Calibrations/tpc/TpcAdcCorrectionMDF.C index 33a25defa76..1f7dce88c49 100644 --- a/StarDb/Calibrations/tpc/TpcAdcCorrectionMDF.C +++ b/StarDb/Calibrations/tpc/TpcAdcCorrectionMDF.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection")) return 0; Int_t nrows = 1; diff --git a/StarDb/Calibrations/tpc/TpcAdcCorrectionMDF.r2019.C b/StarDb/Calibrations/tpc/TpcAdcCorrectionMDF.r2019.C index 33a25defa76..1f7dce88c49 100644 --- a/StarDb/Calibrations/tpc/TpcAdcCorrectionMDF.r2019.C +++ b/StarDb/Calibrations/tpc/TpcAdcCorrectionMDF.r2019.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection")) return 0; Int_t nrows = 1; diff --git a/StarDb/Calibrations/tpc/TpcAdcI.C b/StarDb/Calibrations/tpc/TpcAdcI.C index ade649c6b9e..8fa3ffb781e 100644 --- a/StarDb/Calibrations/tpc/TpcAdcI.C +++ b/StarDb/Calibrations/tpc/TpcAdcI.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcAvgCurrent.C b/StarDb/Calibrations/tpc/TpcAvgCurrent.C index 7dc7433dbc7..b745790f80e 100644 --- a/StarDb/Calibrations/tpc/TpcAvgCurrent.C +++ b/StarDb/Calibrations/tpc/TpcAvgCurrent.C @@ -1,5 +1,7 @@ #include +#include "tables/St_TpcAvgCurrent_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_TpcAvgCurrent")) return 0; TpcAvgCurrent_st row; diff --git a/StarDb/Calibrations/tpc/TpcAvgPowerSupply.20190609.132047.C b/StarDb/Calibrations/tpc/TpcAvgPowerSupply.20190609.132047.C index 4e1ff1cb60f..cc1d68b2af7 100644 --- a/StarDb/Calibrations/tpc/TpcAvgPowerSupply.20190609.132047.C +++ b/StarDb/Calibrations/tpc/TpcAvgPowerSupply.20190609.132047.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcAvgPowerSupply_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/Calibrations/tpc/.TpcAvgPowerSupply/TpcAvgPowerSupply Allocated rows: 1 Used rows: 1 Row size: 2316 bytes diff --git a/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2018.C b/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2018.C index 77d6007c2a2..bfa7460fc84 100644 --- a/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2018.C +++ b/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcAvgPowerSupply_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_TpcAvgPowerSupply")) return 0; TpcAvgPowerSupply_st row; diff --git a/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2019.C b/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2019.C index 68b5b4d82e4..5975c3912ed 100644 --- a/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2019.C +++ b/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcAvgPowerSupply_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_TpcAvgPowerSupply")) return 0; TpcAvgPowerSupply_st row; diff --git a/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2020.C b/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2020.C index 68b5b4d82e4..5975c3912ed 100644 --- a/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2020.C +++ b/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2020.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcAvgPowerSupply_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_TpcAvgPowerSupply")) return 0; TpcAvgPowerSupply_st row; diff --git a/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2021.C b/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2021.C index 68b5b4d82e4..5975c3912ed 100644 --- a/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2021.C +++ b/StarDb/Calibrations/tpc/TpcAvgPowerSupply.y2021.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcAvgPowerSupply_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_TpcAvgPowerSupply")) return 0; TpcAvgPowerSupply_st row; diff --git a/StarDb/Calibrations/tpc/TpcCurrentCorrectionX.C b/StarDb/Calibrations/tpc/TpcCurrentCorrectionX.C index 1ca6dead9e7..d4abdd17822 100644 --- a/StarDb/Calibrations/tpc/TpcCurrentCorrectionX.C +++ b/StarDb/Calibrations/tpc/TpcCurrentCorrectionX.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 192; diff --git a/StarDb/Calibrations/tpc/TpcDriftDistOxygen.C b/StarDb/Calibrations/tpc/TpcDriftDistOxygen.C index 01b9bd7498f..9f6b46b5cdd 100644 --- a/StarDb/Calibrations/tpc/TpcDriftDistOxygen.C +++ b/StarDb/Calibrations/tpc/TpcDriftDistOxygen.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // tpcCorrection! Allocated rows: 48 Used rows: 48 Row size: 16 bytes diff --git a/StarDb/Calibrations/tpc/TpcDriftVelRowCor.C b/StarDb/Calibrations/tpc/TpcDriftVelRowCor.C index f0245b165a5..ddaa4120676 100644 --- a/StarDb/Calibrations/tpc/TpcDriftVelRowCor.C +++ b/StarDb/Calibrations/tpc/TpcDriftVelRowCor.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; tpcCorrection_st row; diff --git a/StarDb/Calibrations/tpc/TpcEdge.C b/StarDb/Calibrations/tpc/TpcEdge.C index c9719d4c4e6..d9ce92dcfec 100644 --- a/StarDb/Calibrations/tpc/TpcEdge.C +++ b/StarDb/Calibrations/tpc/TpcEdge.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcEffectivedX.C b/StarDb/Calibrations/tpc/TpcEffectivedX.C index 22fc298c253..d9bd1422e91 100644 --- a/StarDb/Calibrations/tpc/TpcEffectivedX.C +++ b/StarDb/Calibrations/tpc/TpcEffectivedX.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcEffectivedX_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_TpcEffectivedX")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcEtaCorrection.C b/StarDb/Calibrations/tpc/TpcEtaCorrection.C index f08b0b1634b..72d721d56e3 100644 --- a/StarDb/Calibrations/tpc/TpcEtaCorrection.C +++ b/StarDb/Calibrations/tpc/TpcEtaCorrection.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcEtaCorrection.y2019.C b/StarDb/Calibrations/tpc/TpcEtaCorrection.y2019.C index c43284e4b3d..196ab305ce5 100644 --- a/StarDb/Calibrations/tpc/TpcEtaCorrection.y2019.C +++ b/StarDb/Calibrations/tpc/TpcEtaCorrection.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcEtaCorrectionB.C b/StarDb/Calibrations/tpc/TpcEtaCorrectionB.C index 05e8ab3b9c2..f7d107aa728 100644 --- a/StarDb/Calibrations/tpc/TpcEtaCorrectionB.C +++ b/StarDb/Calibrations/tpc/TpcEtaCorrectionB.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcLengthCorrectionB.C b/StarDb/Calibrations/tpc/TpcLengthCorrectionB.C index f5ac00d0a23..11c32b6bc29 100644 --- a/StarDb/Calibrations/tpc/TpcLengthCorrectionB.C +++ b/StarDb/Calibrations/tpc/TpcLengthCorrectionB.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; tpcCorrection_st row; diff --git a/StarDb/Calibrations/tpc/TpcLengthCorrectionMDF.C b/StarDb/Calibrations/tpc/TpcLengthCorrectionMDF.C index 5856ea826cb..cd7f4d92ae1 100644 --- a/StarDb/Calibrations/tpc/TpcLengthCorrectionMDF.C +++ b/StarDb/Calibrations/tpc/TpcLengthCorrectionMDF.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection")) return 0; Int_t nrows = 6; diff --git a/StarDb/Calibrations/tpc/TpcLengthCorrectionMDN.C b/StarDb/Calibrations/tpc/TpcLengthCorrectionMDN.C index e631de8ee6f..7886885b2f5 100644 --- a/StarDb/Calibrations/tpc/TpcLengthCorrectionMDN.C +++ b/StarDb/Calibrations/tpc/TpcLengthCorrectionMDN.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection")) return 0; MDFCorrection_st row; diff --git a/StarDb/Calibrations/tpc/TpcMultiplicity.C b/StarDb/Calibrations/tpc/TpcMultiplicity.C index 2f04c45ea74..05585076c7f 100644 --- a/StarDb/Calibrations/tpc/TpcMultiplicity.C +++ b/StarDb/Calibrations/tpc/TpcMultiplicity.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcPadCorrection.C b/StarDb/Calibrations/tpc/TpcPadCorrection.C index 0ff819cd10a..30b35ce060e 100644 --- a/StarDb/Calibrations/tpc/TpcPadCorrection.C +++ b/StarDb/Calibrations/tpc/TpcPadCorrection.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcPadCorrection_Table.h" + // $Id: TpcPadCorrection.C,v 1.1 2010/08/31 21:56:32 fisyak Exp $ TDataSet *CreateTable() { if (!TClass::GetClass("St_TpcPadCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.C b/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.C index 31a102ab119..4c5b4866534 100644 --- a/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.C +++ b/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection")) return 0; Int_t nrows = 48; diff --git a/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.y2016.C b/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.y2016.C index 31a102ab119..4c5b4866534 100644 --- a/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.y2016.C +++ b/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.y2016.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection")) return 0; Int_t nrows = 48; diff --git a/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.y2018.C b/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.y2018.C index 31a102ab119..4c5b4866534 100644 --- a/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.y2018.C +++ b/StarDb/Calibrations/tpc/TpcPadCorrectionMDF.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_MDFCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_MDFCorrection")) return 0; Int_t nrows = 48; diff --git a/StarDb/Calibrations/tpc/TpcPadPedRMS.C b/StarDb/Calibrations/tpc/TpcPadPedRMS.C index be09f0ddb07..93681297de5 100644 --- a/StarDb/Calibrations/tpc/TpcPadPedRMS.C +++ b/StarDb/Calibrations/tpc/TpcPadPedRMS.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcPadPedRMS.y2022.C b/StarDb/Calibrations/tpc/TpcPadPedRMS.y2022.C index aada73cb626..8c9cb492141 100644 --- a/StarDb/Calibrations/tpc/TpcPadPedRMS.y2022.C +++ b/StarDb/Calibrations/tpc/TpcPadPedRMS.y2022.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcPhiDirection.C b/StarDb/Calibrations/tpc/TpcPhiDirection.C index 94c94436435..164644769d4 100644 --- a/StarDb/Calibrations/tpc/TpcPhiDirection.C +++ b/StarDb/Calibrations/tpc/TpcPhiDirection.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.20141220.000000.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.20141220.000000.C index a356cf91a09..c196b08b208 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.20141220.000000.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.20141220.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.20141220.000000.C,v 1.1 2017/05/25 15:32:05 fisyak Exp $ // $Log: TpcResponseSimulator.20141220.000000.C,v $ // Revision 1.1 2017/05/25 15:32:05 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.20151220.000001.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.20151220.000001.C index b4c621bdfdd..e2536582790 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.20151220.000001.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.20151220.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.20151220.000001.C,v 1.1 2017/05/20 00:54:00 fisyak Exp $ // $Log: TpcResponseSimulator.20151220.000001.C,v $ // Revision 1.1 2017/05/20 00:54:00 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.20151220.000002.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.20151220.000002.C index 283c1c7d83f..06ad701b855 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.20151220.000002.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.20151220.000002.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.20151220.000002.C,v 1.1 2017/08/08 21:37:17 fisyak Exp $ // $Log: TpcResponseSimulator.20151220.000002.C,v $ // Revision 1.1 2017/08/08 21:37:17 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.20171220.000001.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.20171220.000001.C index 18885c5bc36..1e8c28cd44c 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.20171220.000001.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.20171220.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/tpc/.TpcResponseSimulator/TpcResponseSimulator Allocated rows: 1 Used rows: 1 Row size: 124 bytes diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071405.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071405.C index 5cd1a2e3262..68ed4178d0f 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071405.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071405.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.20180531.071405.C,v 1.2 2020/05/23 20:57:26 fisyak Exp $ // $Log: TpcResponseSimulator.20180531.071405.C,v $ // Revision 1.2 2020/05/23 20:57:26 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071409.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071409.C index 675c3ff7fe8..8072dc5288b 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071409.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071409.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.20180531.071409.C,v 1.2 2020/07/08 17:12:39 fisyak Exp $ // $Log: TpcResponseSimulator.20180531.071409.C,v $ // Revision 1.2 2020/07/08 17:12:39 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071410.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071410.C index 4a7d6ae8efc..fc3ded0598b 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071410.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.20180531.071410.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.20180531.071410.C,v 1.1 2021/05/10 21:02:56 fisyak Exp $ // $Log: TpcResponseSimulator.20180531.071410.C,v $ // Revision 1.1 2021/05/10 21:02:56 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.20180605.071409.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.20180605.071409.C index 18661eb97bc..662ca1c337a 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.20180605.071409.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.20180605.071409.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.20171220.000001.C,v 1.1 2019/10/09 20:40:02 iraklic Exp $ // $Log: TpcResponseSimulator.20171220.000001.C,v $ // Revision 1.1 2019/10/09 20:40:02 iraklic diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.C index ec9ce26e023..8bc9d3c1d94 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.C,v 1.15 2018/10/17 20:45:17 fisyak Exp $ // $Log: TpcResponseSimulator.C,v $ // Revision 1.15 2018/10/17 20:45:17 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.r2019.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.r2019.C index 7d14af930d4..33d5bfb0435 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.r2019.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.r2019.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2019.C,v 1.4 2020/04/03 23:47:14 fisyak Exp $ // $Log: TpcResponseSimulator.y2019.C,v $ // Revision 1.4 2020/04/03 23:47:14 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2005.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2005.C index d84ced8fe50..a9e58087376 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2005.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2005.C,v 1.1 2018/12/16 20:37:45 fisyak Exp $ // $Log: TpcResponseSimulator.y2005.C,v $ // Revision 1.1 2018/12/16 20:37:45 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2009.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2009.C index 87f3302b60b..db812e6a379 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2009.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2009.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2009.C,v 1.13 2014/03/16 20:17:36 fisyak Exp $ // $Log: TpcResponseSimulator.y2009.C,v $ // Revision 1.13 2014/03/16 20:17:36 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2010.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2010.C index a6291e4962b..b27b8cc8bbd 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2010.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2010.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2010.C,v 1.16 2018/12/09 23:21:53 fisyak Exp $ // $Log: TpcResponseSimulator.y2010.C,v $ // Revision 1.16 2018/12/09 23:21:53 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2011.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2011.C index d8f794fce33..88583ec2839 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2011.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2011.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2011.C,v 1.12 2018/12/09 23:21:53 fisyak Exp $ // $Log: TpcResponseSimulator.y2011.C,v $ // Revision 1.12 2018/12/09 23:21:53 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2012.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2012.C index 9ad166151a4..0100781f9f7 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2012.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2012.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2012.C,v 1.3 2013/11/08 16:18:25 fisyak Exp $ // $Log: TpcResponseSimulator.y2012.C,v $ // Revision 1.3 2013/11/08 16:18:25 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2013.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2013.C index 4abba2f57a2..cd07abad291 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2013.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2013.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2013.C,v 1.1 2014/01/09 23:15:10 fisyak Exp $ // $Log: TpcResponseSimulator.y2013.C,v $ // Revision 1.1 2014/01/09 23:15:10 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2014.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2014.C index b729b06a661..9ef0d19d037 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2014.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2014.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2014.C,v 1.1 2016/09/19 12:25:07 fisyak Exp $ // $Log: TpcResponseSimulator.y2014.C,v $ // Revision 1.1 2016/09/19 12:25:07 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2015.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2015.C index 1379ba2eb9a..eb8c15a8512 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2015.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2015.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2015.C,v 1.1 2016/09/19 12:25:07 fisyak Exp $ // $Log: TpcResponseSimulator.y2015.C,v $ // Revision 1.1 2016/09/19 12:25:07 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2016.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2016.C index a9aa08bf669..112f360b956 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2016.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2016.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2016.C,v 1.3 2017/08/08 21:37:17 fisyak Exp $ // $Log: TpcResponseSimulator.y2016.C,v $ // Revision 1.3 2017/08/08 21:37:17 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2017.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2017.C index 439c3b878ee..298b9f71e10 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2017.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2017.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2017.C,v 1.3 2018/12/09 23:21:53 fisyak Exp $ // $Log: TpcResponseSimulator.y2017.C,v $ // Revision 1.3 2018/12/09 23:21:53 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2018.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2018.C index 0b086acf746..dddc296a3e7 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2018.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2018.C,v 1.4 2020/04/27 21:20:13 fisyak Exp $ // $Log: TpcResponseSimulator.y2018.C,v $ // Revision 1.4 2020/04/27 21:20:13 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2019.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2019.C index 46055946842..85712d0ffab 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2019.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2019.C,v 1.4 2020/04/03 23:47:14 fisyak Exp $ // $Log: TpcResponseSimulator.y2019.C,v $ // Revision 1.4 2020/04/03 23:47:14 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2020.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2020.C index 2edd3f9ff03..c29461d8192 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2020.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2020.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2020.C,v 1.1 2021/05/10 21:02:56 fisyak Exp $ // $Log: TpcResponseSimulator.y2020.C,v $ // Revision 1.1 2021/05/10 21:02:56 fisyak diff --git a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2021.C b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2021.C index c4f131c8c0c..4573d674acc 100644 --- a/StarDb/Calibrations/tpc/TpcResponseSimulator.y2021.C +++ b/StarDb/Calibrations/tpc/TpcResponseSimulator.y2021.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcResponseSimulator_Table.h" + // $Id: TpcResponseSimulator.y2021.C,v 1.1 2021/05/10 21:02:56 fisyak Exp $ // $Log: TpcResponseSimulator.y2021.C,v $ // Revision 1.1 2021/05/10 21:02:56 fisyak diff --git a/StarDb/Calibrations/tpc/TpcRowQ.C b/StarDb/Calibrations/tpc/TpcRowQ.C index 1d9bb0d5115..257046e905c 100644 --- a/StarDb/Calibrations/tpc/TpcRowQ.C +++ b/StarDb/Calibrations/tpc/TpcRowQ.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcSecRowB.C b/StarDb/Calibrations/tpc/TpcSecRowB.C index 856ef9bdf9e..b5420ab9928 100644 --- a/StarDb/Calibrations/tpc/TpcSecRowB.C +++ b/StarDb/Calibrations/tpc/TpcSecRowB.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcSecRowCor_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // TpcSecRow Allocated rows: 24 Used rows: 24 Row size: 360 bytes diff --git a/StarDb/Calibrations/tpc/TpcSecRowB.y2018.C b/StarDb/Calibrations/tpc/TpcSecRowB.y2018.C index 8037c09ee18..65b59338699 100644 --- a/StarDb/Calibrations/tpc/TpcSecRowB.y2018.C +++ b/StarDb/Calibrations/tpc/TpcSecRowB.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcSecRowCor_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // TpcSecRow Allocated rows: 24 Used rows: 24 Row size: 360 bytes diff --git a/StarDb/Calibrations/tpc/TpcSecRowB.y2019.C b/StarDb/Calibrations/tpc/TpcSecRowB.y2019.C index 8037c09ee18..65b59338699 100644 --- a/StarDb/Calibrations/tpc/TpcSecRowB.y2019.C +++ b/StarDb/Calibrations/tpc/TpcSecRowB.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_TpcSecRowCor_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // TpcSecRow Allocated rows: 24 Used rows: 24 Row size: 360 bytes diff --git a/StarDb/Calibrations/tpc/TpcSpaceCharge.C b/StarDb/Calibrations/tpc/TpcSpaceCharge.C index 2405bb04919..f50448476db 100644 --- a/StarDb/Calibrations/tpc/TpcSpaceCharge.C +++ b/StarDb/Calibrations/tpc/TpcSpaceCharge.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcTanL.C b/StarDb/Calibrations/tpc/TpcTanL.C index 663c42ce288..40f23f709ff 100644 --- a/StarDb/Calibrations/tpc/TpcTanL.C +++ b/StarDb/Calibrations/tpc/TpcTanL.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcZCorrectionB.C b/StarDb/Calibrations/tpc/TpcZCorrectionB.C index 9fa97192999..13ce16afa2b 100644 --- a/StarDb/Calibrations/tpc/TpcZCorrectionB.C +++ b/StarDb/Calibrations/tpc/TpcZCorrectionB.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcZCorrectionC.C b/StarDb/Calibrations/tpc/TpcZCorrectionC.C index 53651562fe6..29ea7d86348 100644 --- a/StarDb/Calibrations/tpc/TpcZCorrectionC.C +++ b/StarDb/Calibrations/tpc/TpcZCorrectionC.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcZDC.C b/StarDb/Calibrations/tpc/TpcZDC.C index 30ffe2109e9..4445f80f79c 100644 --- a/StarDb/Calibrations/tpc/TpcZDC.C +++ b/StarDb/Calibrations/tpc/TpcZDC.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcdCharge.C b/StarDb/Calibrations/tpc/TpcdCharge.C index 559412a4833..83fa2efcca8 100644 --- a/StarDb/Calibrations/tpc/TpcdCharge.C +++ b/StarDb/Calibrations/tpc/TpcdCharge.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/TpcdEdxCor.C b/StarDb/Calibrations/tpc/TpcdEdxCor.C index 29ee0e95407..1db4b0fd728 100644 --- a/StarDb/Calibrations/tpc/TpcdEdxCor.C +++ b/StarDb/Calibrations/tpc/TpcdEdxCor.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // Ad hoc accont of saturation in dE/dx if (!gROOT->GetClass("St_tpcCorrection")) return 0; tpcCorrection_st row; diff --git a/StarDb/Calibrations/tpc/TpcdXCorrectionB.C b/StarDb/Calibrations/tpc/TpcdXCorrectionB.C index 8d6d0e20088..87798a5ca5e 100644 --- a/StarDb/Calibrations/tpc/TpcdXCorrectionB.C +++ b/StarDb/Calibrations/tpc/TpcdXCorrectionB.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; tpcCorrection_st row; diff --git a/StarDb/Calibrations/tpc/TpcdXdY.C b/StarDb/Calibrations/tpc/TpcdXdY.C index 8257d609216..cf38efe035b 100644 --- a/StarDb/Calibrations/tpc/TpcdXdY.C +++ b/StarDb/Calibrations/tpc/TpcdXdY.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcdZdY.C b/StarDb/Calibrations/tpc/TpcdZdY.C index 93866fcfd96..5f66fa4ae47 100644 --- a/StarDb/Calibrations/tpc/TpcdZdY.C +++ b/StarDb/Calibrations/tpc/TpcdZdY.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcnPad.C b/StarDb/Calibrations/tpc/TpcnPad.C index 94776b54cc6..2f9baa82704 100644 --- a/StarDb/Calibrations/tpc/TpcnPad.C +++ b/StarDb/Calibrations/tpc/TpcnPad.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcnPad.y2019.C b/StarDb/Calibrations/tpc/TpcnPad.y2019.C index 1d725942599..36786a650ff 100644 --- a/StarDb/Calibrations/tpc/TpcnPad.y2019.C +++ b/StarDb/Calibrations/tpc/TpcnPad.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 1; diff --git a/StarDb/Calibrations/tpc/TpcnTbk.C b/StarDb/Calibrations/tpc/TpcnTbk.C index a4511d60c84..7e5d984757b 100644 --- a/StarDb/Calibrations/tpc/TpcnTbk.C +++ b/StarDb/Calibrations/tpc/TpcnTbk.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; Int_t nrows = 2; diff --git a/StarDb/Calibrations/tpc/TpcrCharge.C b/StarDb/Calibrations/tpc/TpcrCharge.C index 7a724070886..623e3101e02 100644 --- a/StarDb/Calibrations/tpc/TpcrCharge.C +++ b/StarDb/Calibrations/tpc/TpcrCharge.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/itpcDeadFEE.20190416.035540.C b/StarDb/Calibrations/tpc/itpcDeadFEE.20190416.035540.C index 5dec20f43bb..44bca66e6a2 100644 --- a/StarDb/Calibrations/tpc/itpcDeadFEE.20190416.035540.C +++ b/StarDb/Calibrations/tpc/itpcDeadFEE.20190416.035540.C @@ -1,3 +1,5 @@ +#include "tables/St_itpcDeadFEE_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_itpcDeadFEE")) return 0; diff --git a/StarDb/Calibrations/tpc/itpcDeadFEE.20190624.011700.C b/StarDb/Calibrations/tpc/itpcDeadFEE.20190624.011700.C index 644f5d41793..4a25b393985 100644 --- a/StarDb/Calibrations/tpc/itpcDeadFEE.20190624.011700.C +++ b/StarDb/Calibrations/tpc/itpcDeadFEE.20190624.011700.C @@ -1,3 +1,5 @@ +#include "tables/St_itpcDeadFEE_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_itpcDeadFEE")) return 0; diff --git a/StarDb/Calibrations/tpc/itpcDeadFEE.C b/StarDb/Calibrations/tpc/itpcDeadFEE.C index f908c22cb00..6b7e211fcb9 100644 --- a/StarDb/Calibrations/tpc/itpcDeadFEE.C +++ b/StarDb/Calibrations/tpc/itpcDeadFEE.C @@ -1,3 +1,5 @@ +#include "tables/St_itpcDeadFEE_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_itpcDeadFEE")) return 0; diff --git a/StarDb/Calibrations/tpc/itpcPadGainT0.C b/StarDb/Calibrations/tpc/itpcPadGainT0.C index faf0370358a..e62ddadbf66 100644 --- a/StarDb/Calibrations/tpc/itpcPadGainT0.C +++ b/StarDb/Calibrations/tpc/itpcPadGainT0.C @@ -1,3 +1,5 @@ +#include "tables/St_itpcPadGainT0_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_itpcPadGainT0")) return 0; itpcPadGainT0_st row; diff --git a/StarDb/Calibrations/tpc/itpcPadGainT0.y2018.C b/StarDb/Calibrations/tpc/itpcPadGainT0.y2018.C index faf0370358a..e62ddadbf66 100644 --- a/StarDb/Calibrations/tpc/itpcPadGainT0.y2018.C +++ b/StarDb/Calibrations/tpc/itpcPadGainT0.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_itpcPadGainT0_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_itpcPadGainT0")) return 0; itpcPadGainT0_st row; diff --git a/StarDb/Calibrations/tpc/itpcPadGainT0.y2019.C b/StarDb/Calibrations/tpc/itpcPadGainT0.y2019.C index faf0370358a..e62ddadbf66 100644 --- a/StarDb/Calibrations/tpc/itpcPadGainT0.y2019.C +++ b/StarDb/Calibrations/tpc/itpcPadGainT0.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_itpcPadGainT0_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_itpcPadGainT0")) return 0; itpcPadGainT0_st row; diff --git a/StarDb/Calibrations/tpc/itpcPadGainT0.y2020.C b/StarDb/Calibrations/tpc/itpcPadGainT0.y2020.C index faf0370358a..e62ddadbf66 100644 --- a/StarDb/Calibrations/tpc/itpcPadGainT0.y2020.C +++ b/StarDb/Calibrations/tpc/itpcPadGainT0.y2020.C @@ -1,3 +1,5 @@ +#include "tables/St_itpcPadGainT0_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_itpcPadGainT0")) return 0; itpcPadGainT0_st row; diff --git a/StarDb/Calibrations/tpc/itpcRDOMap.C b/StarDb/Calibrations/tpc/itpcRDOMap.C index b182ca48785..b5bad3ebe54 100644 --- a/StarDb/Calibrations/tpc/itpcRDOMap.C +++ b/StarDb/Calibrations/tpc/itpcRDOMap.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcRDOMap_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcRDOMap")) return 0; diff --git a/StarDb/Calibrations/tpc/starTriggerDelay.y2019.C b/StarDb/Calibrations/tpc/starTriggerDelay.y2019.C index 44fcce6bb46..47ed4e84ebf 100644 --- a/StarDb/Calibrations/tpc/starTriggerDelay.y2019.C +++ b/StarDb/Calibrations/tpc/starTriggerDelay.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_starTriggerDelay_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/RunLog/onl/.starTriggerDelay/starTriggerDelay Allocated rows: 1 Used rows: 1 Row size: 16 bytes diff --git a/StarDb/Calibrations/tpc/tpcAcCharge.C b/StarDb/Calibrations/tpc/tpcAcCharge.C index 6de675f198e..e630afbd3e3 100644 --- a/StarDb/Calibrations/tpc/tpcAcCharge.C +++ b/StarDb/Calibrations/tpc/tpcAcCharge.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAcCharge_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAcCharge")) return 0; tpcAcCharge_st row = {0,0}; diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.20080219.143436.C b/StarDb/Calibrations/tpc/tpcAltroParams.20080219.143436.C index 6acf55f7cec..a5cf8f83322 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.20080219.143436.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.20080219.143436.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; St_tpcAltroParams *tableSet = new St_tpcAltroParams("tpcAltroParams",24); diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.20180426.121919.C b/StarDb/Calibrations/tpc/tpcAltroParams.20180426.121919.C index 5d4b58bc2e2..db9bf78feb8 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.20180426.121919.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.20180426.121919.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; St_tpcAltroParams *tableSet = new St_tpcAltroParams("tpcAltroParams",24); diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.20180426.124701.C b/StarDb/Calibrations/tpc/tpcAltroParams.20180426.124701.C index b183f262347..6d02f52fcf7 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.20180426.124701.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.20180426.124701.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.C b/StarDb/Calibrations/tpc/tpcAltroParams.C index ab9a2086e92..b58654aa233 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; St_tpcAltroParams *tableSet = new St_tpcAltroParams("tpcAltroParams",24); diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.y2008.C b/StarDb/Calibrations/tpc/tpcAltroParams.y2008.C index bfaf1f2004d..229fda77003 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.y2008.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.y2008.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; St_tpcAltroParams *tableSet = new St_tpcAltroParams("tpcAltroParams",24); diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.y2009.C b/StarDb/Calibrations/tpc/tpcAltroParams.y2009.C index 2a5daf00e24..41cb512cca9 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.y2009.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.y2009.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; St_tpcAltroParams *tableSet = new St_tpcAltroParams("tpcAltroParams",24); diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.y2010.C b/StarDb/Calibrations/tpc/tpcAltroParams.y2010.C index 5d4b58bc2e2..db9bf78feb8 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.y2010.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.y2010.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; St_tpcAltroParams *tableSet = new St_tpcAltroParams("tpcAltroParams",24); diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.y2016.C b/StarDb/Calibrations/tpc/tpcAltroParams.y2016.C index b183f262347..6d02f52fcf7 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.y2016.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.y2016.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.y2019.C b/StarDb/Calibrations/tpc/tpcAltroParams.y2019.C index 86bd09bb2ba..97253b7179a 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.y2019.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.y2020.C b/StarDb/Calibrations/tpc/tpcAltroParams.y2020.C index 378a91fefd6..03eb3d61c13 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.y2020.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.y2020.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcAltroParams.y2021.C b/StarDb/Calibrations/tpc/tpcAltroParams.y2021.C index 226a589dd7c..c02777597f7 100644 --- a/StarDb/Calibrations/tpc/tpcAltroParams.y2021.C +++ b/StarDb/Calibrations/tpc/tpcAltroParams.y2021.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAltroParams_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAltroParams")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcAnodeHV.C b/StarDb/Calibrations/tpc/tpcAnodeHV.C index bd457f98a68..a1e580704e2 100644 --- a/StarDb/Calibrations/tpc/tpcAnodeHV.C +++ b/StarDb/Calibrations/tpc/tpcAnodeHV.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAnodeHV_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAnodeHV")) return 0; St_tpcAnodeHV *tableSet = new St_tpcAnodeHV("tpcAnodeHV",19*24); diff --git a/StarDb/Calibrations/tpc/tpcAnodeHVavg.C b/StarDb/Calibrations/tpc/tpcAnodeHVavg.C index cd780ba4a9a..4daaba525a6 100644 --- a/StarDb/Calibrations/tpc/tpcAnodeHVavg.C +++ b/StarDb/Calibrations/tpc/tpcAnodeHVavg.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAnodeHVavg_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAnodeHVavg")) return 0; St_tpcAnodeHVavg *tableSet = new St_tpcAnodeHVavg("tpcAnodeHVavg",19*24); diff --git a/StarDb/Calibrations/tpc/tpcAnodeHVavg.y2018.C b/StarDb/Calibrations/tpc/tpcAnodeHVavg.y2018.C index b31f03a731c..7d336d0441d 100644 --- a/StarDb/Calibrations/tpc/tpcAnodeHVavg.y2018.C +++ b/StarDb/Calibrations/tpc/tpcAnodeHVavg.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAnodeHVavg_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAnodeHVavg")) return 0; St_tpcAnodeHVavg *tableSet = new St_tpcAnodeHVavg("tpcAnodeHVavg",19*24); diff --git a/StarDb/Calibrations/tpc/tpcAnodeHVavg.y2019.C b/StarDb/Calibrations/tpc/tpcAnodeHVavg.y2019.C index b31f03a731c..7d336d0441d 100644 --- a/StarDb/Calibrations/tpc/tpcAnodeHVavg.y2019.C +++ b/StarDb/Calibrations/tpc/tpcAnodeHVavg.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAnodeHVavg_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAnodeHVavg")) return 0; St_tpcAnodeHVavg *tableSet = new St_tpcAnodeHVavg("tpcAnodeHVavg",19*24); diff --git a/StarDb/Calibrations/tpc/tpcAvCurrent.C b/StarDb/Calibrations/tpc/tpcAvCurrent.C index f33ce8e9bba..3630fb9f5a4 100644 --- a/StarDb/Calibrations/tpc/tpcAvCurrent.C +++ b/StarDb/Calibrations/tpc/tpcAvCurrent.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcAvCurrent_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcAvCurrent")) return 0; tpcAvCurrent_st row; diff --git a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.C b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.C index 2ade69b15f9..e947df2eef0 100644 --- a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.C +++ b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcBXT0Corr_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/Calibrations/tpc/.tpcPressureB/tpcPressureB Allocated rows: 50 Used rows: 50 Row size: 120 bytes diff --git a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2016.C b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2016.C index 36b5868c83c..8da64a31450 100644 --- a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2016.C +++ b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2016.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcBXT0Corr_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/Calibrations/tpc/.tpcPressureB/tpcPressureB Allocated rows: 50 Used rows: 50 Row size: 120 bytes diff --git a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2017.C b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2017.C index 36b5868c83c..8da64a31450 100644 --- a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2017.C +++ b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2017.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcBXT0Corr_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/Calibrations/tpc/.tpcPressureB/tpcPressureB Allocated rows: 50 Used rows: 50 Row size: 120 bytes diff --git a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2018.C b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2018.C index e708b4d0407..057b77bde7c 100644 --- a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2018.C +++ b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcBXT0Corr_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/Calibrations/tpc/.tpcPressureB/tpcPressureB Allocated rows: 50 Used rows: 50 Row size: 120 bytes diff --git a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2019.C b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2019.C index efeaa5c149b..a7dd63a6963 100644 --- a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2019.C +++ b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcBXT0Corr_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/Calibrations/tpc/.tpcPressureB/tpcPressureB Allocated rows: 50 Used rows: 50 Row size: 120 bytes diff --git a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2020.C b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2020.C index 971ec3d9897..535fa9424a7 100644 --- a/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2020.C +++ b/StarDb/Calibrations/tpc/tpcBXT0CorrEPD.y2020.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcBXT0Corr_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/Calibrations/tpc/.tpcPressureB/tpcPressureB Allocated rows: 50 Used rows: 50 Row size: 120 bytes diff --git a/StarDb/Calibrations/tpc/tpcDriftVelocity.C b/StarDb/Calibrations/tpc/tpcDriftVelocity.C index 71328de3a10..e75c6e7ba2b 100644 --- a/StarDb/Calibrations/tpc/tpcDriftVelocity.C +++ b/StarDb/Calibrations/tpc/tpcDriftVelocity.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcDriftVelocity_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcDriftVelocity")) return 0; tpcDriftVelocity_st row; diff --git a/StarDb/Calibrations/tpc/tpcElectronics.C b/StarDb/Calibrations/tpc/tpcElectronics.C index ff7e83d42fd..2c2a7fc53ec 100644 --- a/StarDb/Calibrations/tpc/tpcElectronics.C +++ b/StarDb/Calibrations/tpc/tpcElectronics.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcElectronics_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcElectronics")) return 0; tpcElectronics_st row; diff --git a/StarDb/Calibrations/tpc/tpcElectronics.y2001.C b/StarDb/Calibrations/tpc/tpcElectronics.y2001.C index ff7e83d42fd..2c2a7fc53ec 100644 --- a/StarDb/Calibrations/tpc/tpcElectronics.y2001.C +++ b/StarDb/Calibrations/tpc/tpcElectronics.y2001.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcElectronics_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcElectronics")) return 0; tpcElectronics_st row; diff --git a/StarDb/Calibrations/tpc/tpcElectronics.y2003.C b/StarDb/Calibrations/tpc/tpcElectronics.y2003.C index ff7e83d42fd..2c2a7fc53ec 100644 --- a/StarDb/Calibrations/tpc/tpcElectronics.y2003.C +++ b/StarDb/Calibrations/tpc/tpcElectronics.y2003.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcElectronics_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcElectronics")) return 0; tpcElectronics_st row; diff --git a/StarDb/Calibrations/tpc/tpcElectronics.y2004.C b/StarDb/Calibrations/tpc/tpcElectronics.y2004.C index ff7e83d42fd..2c2a7fc53ec 100644 --- a/StarDb/Calibrations/tpc/tpcElectronics.y2004.C +++ b/StarDb/Calibrations/tpc/tpcElectronics.y2004.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcElectronics_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcElectronics")) return 0; tpcElectronics_st row; diff --git a/StarDb/Calibrations/tpc/tpcElectronics.y2005.C b/StarDb/Calibrations/tpc/tpcElectronics.y2005.C index ff7e83d42fd..2c2a7fc53ec 100644 --- a/StarDb/Calibrations/tpc/tpcElectronics.y2005.C +++ b/StarDb/Calibrations/tpc/tpcElectronics.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcElectronics_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcElectronics")) return 0; tpcElectronics_st row; diff --git a/StarDb/Calibrations/tpc/tpcElectronics.y2006.C b/StarDb/Calibrations/tpc/tpcElectronics.y2006.C index 5805cedc55f..43d191ddccc 100644 --- a/StarDb/Calibrations/tpc/tpcElectronics.y2006.C +++ b/StarDb/Calibrations/tpc/tpcElectronics.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcElectronics_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcElectronics")) return 0; tpcElectronics_st row; diff --git a/StarDb/Calibrations/tpc/tpcElectronics.y2007.C b/StarDb/Calibrations/tpc/tpcElectronics.y2007.C index 5805cedc55f..43d191ddccc 100644 --- a/StarDb/Calibrations/tpc/tpcElectronics.y2007.C +++ b/StarDb/Calibrations/tpc/tpcElectronics.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcElectronics_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcElectronics")) return 0; tpcElectronics_st row; diff --git a/StarDb/Calibrations/tpc/tpcElectronics.y2008.C b/StarDb/Calibrations/tpc/tpcElectronics.y2008.C index 5805cedc55f..43d191ddccc 100644 --- a/StarDb/Calibrations/tpc/tpcElectronics.y2008.C +++ b/StarDb/Calibrations/tpc/tpcElectronics.y2008.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcElectronics_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcElectronics")) return 0; tpcElectronics_st row; diff --git a/StarDb/Calibrations/tpc/tpcElectronics.y2019.C b/StarDb/Calibrations/tpc/tpcElectronics.y2019.C index 5805cedc55f..43d191ddccc 100644 --- a/StarDb/Calibrations/tpc/tpcElectronics.y2019.C +++ b/StarDb/Calibrations/tpc/tpcElectronics.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcElectronics_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcElectronics")) return 0; tpcElectronics_st row; diff --git a/StarDb/Calibrations/tpc/tpcExtraGainCorrection.C b/StarDb/Calibrations/tpc/tpcExtraGainCorrection.C index c8fb88fefe0..aca8b671c52 100644 --- a/StarDb/Calibrations/tpc/tpcExtraGainCorrection.C +++ b/StarDb/Calibrations/tpc/tpcExtraGainCorrection.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcExtraGainCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcExtraGainCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcExtraGainCorrection.y2022.C b/StarDb/Calibrations/tpc/tpcExtraGainCorrection.y2022.C index c01c06881b8..a108eb1a6f0 100644 --- a/StarDb/Calibrations/tpc/tpcExtraGainCorrection.y2022.C +++ b/StarDb/Calibrations/tpc/tpcExtraGainCorrection.y2022.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcExtraGainCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcExtraGainCorrection")) return 0; @@ -28,7 +30,7 @@ TDataSet *CreateTable() { { 0, 0, 23098050, 23098050, 5, -1, -1, -1, 7, 0, 0}, /* Dead nruns = 1*/ { 0, 0, 23098050, 23098050, 5, -1, -1, -1, 8, 0, 0}, /* Dead nruns = 1 iold = 9127 */ { 0, 0, 23098050, 23098050, 6, -1, -1, -1, 7, 0, 0}, /* Dead nruns = 1*/ - { 0, 0, 23098050, 23098050, 6, -1, -1, -1, 8, 0, 0} /* Dead nruns = 1*/ + { 0, 0, 23098050, 23098050, 6, -1, -1, -1, 8, 0, 0}, /* Dead nruns = 1*/ { 0, 0, 23001002, 23001034, 4, -1, -1, -1, 2, -1, 1}, /* Alive nruns = 4 */ diff --git a/StarDb/Calibrations/tpc/tpcGainCorrection.C b/StarDb/Calibrations/tpc/tpcGainCorrection.C index 16763fce678..9cb3ea24c91 100644 --- a/StarDb/Calibrations/tpc/tpcGainCorrection.C +++ b/StarDb/Calibrations/tpc/tpcGainCorrection.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcCorrection")) return 0; tpcCorrection_st row; diff --git a/StarDb/Calibrations/tpc/tpcGas.C b/StarDb/Calibrations/tpc/tpcGas.C index b52b986c867..5c37c1f0521 100644 --- a/StarDb/Calibrations/tpc/tpcGas.C +++ b/StarDb/Calibrations/tpc/tpcGas.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcGas_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcGas")) return 0; St_tpcGas *tableSet = new St_tpcGas("tpcGas",1); diff --git a/StarDb/Calibrations/tpc/tpcGas.y2018.C b/StarDb/Calibrations/tpc/tpcGas.y2018.C index a70c09e7117..2f7485e318b 100644 --- a/StarDb/Calibrations/tpc/tpcGas.y2018.C +++ b/StarDb/Calibrations/tpc/tpcGas.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcGas_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/Calibrations/tpc/.tpcGas/tpcGas Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tpc/tpcGasTemperature.C b/StarDb/Calibrations/tpc/tpcGasTemperature.C index 6150d79d5be..566ed51af84 100644 --- a/StarDb/Calibrations/tpc/tpcGasTemperature.C +++ b/StarDb/Calibrations/tpc/tpcGasTemperature.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcGridLeak.C b/StarDb/Calibrations/tpc/tpcGridLeak.C index be39b3d7fc3..a1f68ea6890 100644 --- a/StarDb/Calibrations/tpc/tpcGridLeak.C +++ b/StarDb/Calibrations/tpc/tpcGridLeak.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcGridLeak_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/tpc/.tpcGridLeak/tpcGridLeak Allocated rows: 1 Used rows: 1 Row size: 72 bytes diff --git a/StarDb/Calibrations/tpc/tpcMethaneIn.C b/StarDb/Calibrations/tpc/tpcMethaneIn.C index 4f5ade390f1..b333d0f1325 100644 --- a/StarDb/Calibrations/tpc/tpcMethaneIn.C +++ b/StarDb/Calibrations/tpc/tpcMethaneIn.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcOmegaTau.C b/StarDb/Calibrations/tpc/tpcOmegaTau.C index 6f5c242045c..c5ee89b6f30 100644 --- a/StarDb/Calibrations/tpc/tpcOmegaTau.C +++ b/StarDb/Calibrations/tpc/tpcOmegaTau.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcOmegaTau_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/tpc/.tpcOmegaTau/tpcOmegaTau Allocated rows: 1 Used rows: 1 Row size: 8 bytes diff --git a/StarDb/Calibrations/tpc/tpcPadGainT0.C b/StarDb/Calibrations/tpc/tpcPadGainT0.C index 26032565f32..10230138c05 100644 --- a/StarDb/Calibrations/tpc/tpcPadGainT0.C +++ b/StarDb/Calibrations/tpc/tpcPadGainT0.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcPadGainT0_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcPadGainT0")) return 0; tpcPadGainT0_st row; diff --git a/StarDb/Calibrations/tpc/tpcPadGainT0.y2018.C b/StarDb/Calibrations/tpc/tpcPadGainT0.y2018.C index 26032565f32..10230138c05 100644 --- a/StarDb/Calibrations/tpc/tpcPadGainT0.y2018.C +++ b/StarDb/Calibrations/tpc/tpcPadGainT0.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcPadGainT0_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcPadGainT0")) return 0; tpcPadGainT0_st row; diff --git a/StarDb/Calibrations/tpc/tpcPadGainT0B.20180301.000000.C b/StarDb/Calibrations/tpc/tpcPadGainT0B.20180301.000000.C index ba7e8fab36c..6d555a714c3 100644 --- a/StarDb/Calibrations/tpc/tpcPadGainT0B.20180301.000000.C +++ b/StarDb/Calibrations/tpc/tpcPadGainT0B.20180301.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcPadGainT0B_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcPadGainT0B")) return 0; St_tpcPadGainT0B *tableSet = new St_tpcPadGainT0B("tpcPadGainT0B",24); diff --git a/StarDb/Calibrations/tpc/tpcPadGainT0B.C b/StarDb/Calibrations/tpc/tpcPadGainT0B.C index 7385837701d..d36604549ae 100644 --- a/StarDb/Calibrations/tpc/tpcPadGainT0B.C +++ b/StarDb/Calibrations/tpc/tpcPadGainT0B.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcPadGainT0B_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcPadGainT0B")) return 0; tpcPadGainT0B_st row; diff --git a/StarDb/Calibrations/tpc/tpcPadGainT0B.y2018.C b/StarDb/Calibrations/tpc/tpcPadGainT0B.y2018.C index ba7e8fab36c..6d555a714c3 100644 --- a/StarDb/Calibrations/tpc/tpcPadGainT0B.y2018.C +++ b/StarDb/Calibrations/tpc/tpcPadGainT0B.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcPadGainT0B_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcPadGainT0B")) return 0; St_tpcPadGainT0B *tableSet = new St_tpcPadGainT0B("tpcPadGainT0B",24); diff --git a/StarDb/Calibrations/tpc/tpcPadrowT0.C b/StarDb/Calibrations/tpc/tpcPadrowT0.C index 0762ab415c3..21c2fd7eb63 100644 --- a/StarDb/Calibrations/tpc/tpcPadrowT0.C +++ b/StarDb/Calibrations/tpc/tpcPadrowT0.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcPadrowT0_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_tpcPadrowT0")) return 0; tpcPadrowT0_st row; diff --git a/StarDb/Calibrations/tpc/tpcPressureB.C b/StarDb/Calibrations/tpc/tpcPressureB.C index 157716259e0..df881775235 100644 --- a/StarDb/Calibrations/tpc/tpcPressureB.C +++ b/StarDb/Calibrations/tpc/tpcPressureB.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcRDOMap.C b/StarDb/Calibrations/tpc/tpcRDOMap.C index 694978c1c37..f73969898de 100644 --- a/StarDb/Calibrations/tpc/tpcRDOMap.C +++ b/StarDb/Calibrations/tpc/tpcRDOMap.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcRDOMap_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcRDOMap")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcRDOMap.y2016.C b/StarDb/Calibrations/tpc/tpcRDOMap.y2016.C index 709b313c42a..311d2307152 100644 --- a/StarDb/Calibrations/tpc/tpcRDOMap.y2016.C +++ b/StarDb/Calibrations/tpc/tpcRDOMap.y2016.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcRDOMap_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcRDOMap")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcRDOT0offset.20180312.162439.C b/StarDb/Calibrations/tpc/tpcRDOT0offset.20180312.162439.C index bb058a0182a..67afa0266c5 100644 --- a/StarDb/Calibrations/tpc/tpcRDOT0offset.20180312.162439.C +++ b/StarDb/Calibrations/tpc/tpcRDOT0offset.20180312.162439.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcRDOT0offset_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcRDOT0offset")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcRDOT0offset.C b/StarDb/Calibrations/tpc/tpcRDOT0offset.C index a84b010649e..fc0454f7c14 100644 --- a/StarDb/Calibrations/tpc/tpcRDOT0offset.C +++ b/StarDb/Calibrations/tpc/tpcRDOT0offset.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcRDOT0offset_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcRDOT0offset")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcRDOT0offset.y2019.C b/StarDb/Calibrations/tpc/tpcRDOT0offset.y2019.C index a84b010649e..fc0454f7c14 100644 --- a/StarDb/Calibrations/tpc/tpcRDOT0offset.y2019.C +++ b/StarDb/Calibrations/tpc/tpcRDOT0offset.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcRDOT0offset_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcRDOT0offset")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcSectorT0offset.C b/StarDb/Calibrations/tpc/tpcSectorT0offset.C index 10ab02a5e2a..0fe944f827a 100644 --- a/StarDb/Calibrations/tpc/tpcSectorT0offset.C +++ b/StarDb/Calibrations/tpc/tpcSectorT0offset.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcSectorT0offset_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/tpc/.tpcSectorT0offset/tpcSectorT0offset Allocated rows: 1 Used rows: 1 Row size: 72 bytes diff --git a/StarDb/Calibrations/tpc/tpcSlewing.C b/StarDb/Calibrations/tpc/tpcSlewing.C index 9333e0d7194..acd50779b36 100644 --- a/StarDb/Calibrations/tpc/tpcSlewing.C +++ b/StarDb/Calibrations/tpc/tpcSlewing.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcSlewing_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcSlewing")) return 0; tpcSlewing_st row; diff --git a/StarDb/Calibrations/tpc/tpcStatus.C b/StarDb/Calibrations/tpc/tpcStatus.C index d2b35943818..2f8f0a6e35a 100644 --- a/StarDb/Calibrations/tpc/tpcStatus.C +++ b/StarDb/Calibrations/tpc/tpcStatus.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcStatus_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/tpc/.tpcStatus/tpcStatus Allocated rows: 1 Used rows: 1 Row size: 72 bytes diff --git a/StarDb/Calibrations/tpc/tpcT0.C b/StarDb/Calibrations/tpc/tpcT0.C index 4e1c493cdbe..807756e2983 100644 --- a/StarDb/Calibrations/tpc/tpcT0.C +++ b/StarDb/Calibrations/tpc/tpcT0.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcT0_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/tpc/.tpcT0/tpcT0 Allocated rows: 1 Used rows: 1 Row size: 72 bytes diff --git a/StarDb/Calibrations/tpc/tpcT0BX.C b/StarDb/Calibrations/tpc/tpcT0BX.C index b5ad91c7cb2..7ef39d70604 100644 --- a/StarDb/Calibrations/tpc/tpcT0BX.C +++ b/StarDb/Calibrations/tpc/tpcT0BX.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcT0BX_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!TClass::GetClass("St_tpcT0BX")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcTimeDependence.C b/StarDb/Calibrations/tpc/tpcTimeDependence.C index 687d4eab569..09618c64725 100644 --- a/StarDb/Calibrations/tpc/tpcTimeDependence.C +++ b/StarDb/Calibrations/tpc/tpcTimeDependence.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tpc/tpcWaterOut.C b/StarDb/Calibrations/tpc/tpcWaterOut.C index 861e9cd0789..ebd3693ac2e 100644 --- a/StarDb/Calibrations/tpc/tpcWaterOut.C +++ b/StarDb/Calibrations/tpc/tpcWaterOut.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcCorrection_Table.h" + TDataSet *CreateTable() { // ------ Test whether this table share library was loaded ------ if (!gROOT->GetClass("St_tpcCorrection")) return 0; diff --git a/StarDb/Calibrations/tracker/DefaultTrackingParameters.20010312.000011.C b/StarDb/Calibrations/tracker/DefaultTrackingParameters.20010312.000011.C index 32a37da26bc..a85eba55b46 100644 --- a/StarDb/Calibrations/tracker/DefaultTrackingParameters.20010312.000011.C +++ b/StarDb/Calibrations/tracker/DefaultTrackingParameters.20010312.000011.C @@ -1,3 +1,5 @@ +#include "tables/St_TrackingParameters_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.DefaultTrackingParameters/DefaultTrackingParameters Allocated rows: 1 Used rows: 1 Row size: 32 bytes diff --git a/StarDb/Calibrations/tracker/DefaultTrackingParameters.C b/StarDb/Calibrations/tracker/DefaultTrackingParameters.C index 71691361701..2a683cad9b0 100644 --- a/StarDb/Calibrations/tracker/DefaultTrackingParameters.C +++ b/StarDb/Calibrations/tracker/DefaultTrackingParameters.C @@ -1,3 +1,5 @@ +#include "tables/St_TrackingParameters_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.DefaultTrackingParameters/DefaultTrackingParameters Allocated rows: 1 Used rows: 1 Row size: 32 bytes diff --git a/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2013.C b/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2013.C index 6afcd0c7b66..a30918d5c1d 100644 --- a/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2013.C +++ b/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2013.C @@ -1,3 +1,5 @@ +#include "tables/St_KalmanTrackFinderParameters_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/tracker/.KalmanTrackFinderParameters/KalmanTrackFinderParameters Allocated rows: 1 Used rows: 1 Row size: 68 bytes diff --git a/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2014.C b/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2014.C index 9f93f24af21..737f886c906 100644 --- a/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2014.C +++ b/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2014.C @@ -1,3 +1,5 @@ +#include "tables/St_KalmanTrackFinderParameters_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/tracker/.KalmanTrackFinderParameters/KalmanTrackFinderParameters Allocated rows: 1 Used rows: 1 Row size: 68 bytes diff --git a/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2015.C b/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2015.C index 9f93f24af21..737f886c906 100644 --- a/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2015.C +++ b/StarDb/Calibrations/tracker/KalmanTrackFinderParameters.y2015.C @@ -1,3 +1,5 @@ +#include "tables/St_KalmanTrackFinderParameters_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Calibrations/tracker/.KalmanTrackFinderParameters/KalmanTrackFinderParameters Allocated rows: 1 Used rows: 1 Row size: 68 bytes diff --git a/StarDb/Calibrations/tracker/KalmanTrackFitterParameters.C b/StarDb/Calibrations/tracker/KalmanTrackFitterParameters.C index 2c8f1969468..c52c542d6cc 100644 --- a/StarDb/Calibrations/tracker/KalmanTrackFitterParameters.C +++ b/StarDb/Calibrations/tracker/KalmanTrackFitterParameters.C @@ -1,3 +1,5 @@ +#include "tables/St_KalmanTrackFitterParameters_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.KalmanTrackFitterParameters/KalmanTrackFitterParameters Allocated rows: 1 Used rows: 1 Row size: 8 bytes diff --git a/StarDb/Calibrations/tracker/LocalTrackSeedFinder.C b/StarDb/Calibrations/tracker/LocalTrackSeedFinder.C index 073c7d5a0ae..d47a34b34c4 100644 --- a/StarDb/Calibrations/tracker/LocalTrackSeedFinder.C +++ b/StarDb/Calibrations/tracker/LocalTrackSeedFinder.C @@ -1,3 +1,5 @@ +#include "tables/St_LocalTrackSeedFinder_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.LocalTrackSeedFinder/LocalTrackSeedFinder Allocated rows: 4 Used rows: 4 Row size: 52 bytes diff --git a/StarDb/Calibrations/tracker/PixelHitError.upgr01.C b/StarDb/Calibrations/tracker/PixelHitError.upgr01.C index 006b31efe8c..3202f04e5db 100644 --- a/StarDb/Calibrations/tracker/PixelHitError.upgr01.C +++ b/StarDb/Calibrations/tracker/PixelHitError.upgr01.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ssdHitError/ssdHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/PixelHitError.upgr15.C b/StarDb/Calibrations/tracker/PixelHitError.upgr15.C index 006b31efe8c..3202f04e5db 100644 --- a/StarDb/Calibrations/tracker/PixelHitError.upgr15.C +++ b/StarDb/Calibrations/tracker/PixelHitError.upgr15.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ssdHitError/ssdHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/PixelHitError.y2013.C b/StarDb/Calibrations/tracker/PixelHitError.y2013.C index 559e03c18d9..29d09c67810 100644 --- a/StarDb/Calibrations/tracker/PixelHitError.y2013.C +++ b/StarDb/Calibrations/tracker/PixelHitError.y2013.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ssdHitError/ssdHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/PixelTrackingParameters.upgr01.C b/StarDb/Calibrations/tracker/PixelTrackingParameters.upgr01.C index 75a8ad92fba..e2eaecd2334 100644 --- a/StarDb/Calibrations/tracker/PixelTrackingParameters.upgr01.C +++ b/StarDb/Calibrations/tracker/PixelTrackingParameters.upgr01.C @@ -1,3 +1,5 @@ +#include "tables/St_TrackingParameters_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ssdTrackingParameters/ssdTrackingParameters Allocated rows: 1 Used rows: 1 Row size: 32 bytes diff --git a/StarDb/Calibrations/tracker/PixelTrackingParameters.upgr15.C b/StarDb/Calibrations/tracker/PixelTrackingParameters.upgr15.C index 2044fabdb51..fa43e213b70 100644 --- a/StarDb/Calibrations/tracker/PixelTrackingParameters.upgr15.C +++ b/StarDb/Calibrations/tracker/PixelTrackingParameters.upgr15.C @@ -1,3 +1,5 @@ +#include "tables/St_TrackingParameters_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ssdTrackingParameters/ssdTrackingParameters Allocated rows: 1 Used rows: 1 Row size: 32 bytes diff --git a/StarDb/Calibrations/tracker/StvIstHitErrs.C b/StarDb/Calibrations/tracker/StvIstHitErrs.C index a4b3d025554..9f798cb5f1e 100644 --- a/StarDb/Calibrations/tracker/StvIstHitErrs.C +++ b/StarDb/Calibrations/tracker/StvIstHitErrs.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ist3HitError/ist3HitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/StvKonst.C b/StarDb/Calibrations/tracker/StvKonst.C index 22bb663fa1a..362bf0c3536 100644 --- a/StarDb/Calibrations/tracker/StvKonst.C +++ b/StarDb/Calibrations/tracker/StvKonst.C @@ -1,3 +1,5 @@ +#include "tables/St_StvKonst_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcOuterHitErrs Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/StvPxlHitErrs.C b/StarDb/Calibrations/tracker/StvPxlHitErrs.C index 780440cee07..1b2f6d35400 100644 --- a/StarDb/Calibrations/tracker/StvPxlHitErrs.C +++ b/StarDb/Calibrations/tracker/StvPxlHitErrs.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ssdHitError/ssdHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.20090315.000000.C b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.20090315.000000.C index 7900c1c89bb..af7eef356e6 100644 --- a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.20090315.000000.C +++ b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.20090315.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcInnerHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.20100101.000000.C b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.20100101.000000.C index 06c4b9960b8..347d58a4f28 100644 --- a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.20100101.000000.C +++ b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.20100101.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcInnerHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.C b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.C index 4a4403173f0..2b6ccf9656b 100644 --- a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.C +++ b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcInnerHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2009c.C b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2009c.C index b7e5eb1b127..c46b27c2195 100644 --- a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2009c.C +++ b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2009c.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcInnerHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2010c.C b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2010c.C index b7e5eb1b127..c46b27c2195 100644 --- a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2010c.C +++ b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2010c.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcInnerHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2011c.C b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2011c.C index b7e5eb1b127..c46b27c2195 100644 --- a/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2011c.C +++ b/StarDb/Calibrations/tracker/StvTpcInnerHitErrs.y2011c.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcInnerHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcInnerPromptErrs.C b/StarDb/Calibrations/tracker/StvTpcInnerPromptErrs.C index e0366e3ccc7..4b2cdf04ae2 100644 --- a/StarDb/Calibrations/tracker/StvTpcInnerPromptErrs.C +++ b/StarDb/Calibrations/tracker/StvTpcInnerPromptErrs.C @@ -1,3 +1,5 @@ +#include "tables/St_StvHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcInnerPromptErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.20090315.000000.C b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.20090315.000000.C index 366e46ce409..293d09eb10d 100644 --- a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.20090315.000000.C +++ b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.20090315.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcOuterHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.20100101.000000.C b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.20100101.000000.C index 71640e83072..ab6ed206bf0 100644 --- a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.20100101.000000.C +++ b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.20100101.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcOuterHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.C b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.C index f9526a647d5..3c67a64a9e5 100644 --- a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.C +++ b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcOuterHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2009c.C b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2009c.C index 49366ab82e5..4d010298f63 100644 --- a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2009c.C +++ b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2009c.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcOuterHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2010c.C b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2010c.C index 49366ab82e5..4d010298f63 100644 --- a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2010c.C +++ b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2010c.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcOuterHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2011c.C b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2011c.C index 49366ab82e5..4d010298f63 100644 --- a/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2011c.C +++ b/StarDb/Calibrations/tracker/StvTpcOuterHitErrs.y2011c.C @@ -1,3 +1,5 @@ +#include "tables/St_StvTpcHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcOuterHitErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/StvTpcOuterPromptErrs.C b/StarDb/Calibrations/tracker/StvTpcOuterPromptErrs.C index 43a1d9eecf8..ec322ab5b8f 100644 --- a/StarDb/Calibrations/tracker/StvTpcOuterPromptErrs.C +++ b/StarDb/Calibrations/tracker/StvTpcOuterPromptErrs.C @@ -1,3 +1,5 @@ +#include "tables/St_StvHitErrs_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StvTpcInnerPromptErrs Allocated rows: 1 Used rows: 1 Row size: 64 bytes diff --git a/StarDb/Calibrations/tracker/ist1HitError.20050101.000000.C b/StarDb/Calibrations/tracker/ist1HitError.20050101.000000.C index 06e305c2a1a..73c72bcb013 100644 --- a/StarDb/Calibrations/tracker/ist1HitError.20050101.000000.C +++ b/StarDb/Calibrations/tracker/ist1HitError.20050101.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ist1HitError/ist1HitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/ist1HitError.20050101.000001.C b/StarDb/Calibrations/tracker/ist1HitError.20050101.000001.C index 1587fc9bcbb..f8dececbaca 100644 --- a/StarDb/Calibrations/tracker/ist1HitError.20050101.000001.C +++ b/StarDb/Calibrations/tracker/ist1HitError.20050101.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ist1HitError/ist1HitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/ist1HitError.upgr15.C b/StarDb/Calibrations/tracker/ist1HitError.upgr15.C index c358430730e..a0bbfbf99f9 100644 --- a/StarDb/Calibrations/tracker/ist1HitError.upgr15.C +++ b/StarDb/Calibrations/tracker/ist1HitError.upgr15.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ist1HitError/ist1HitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/ist2HitError.20050101.000000.C b/StarDb/Calibrations/tracker/ist2HitError.20050101.000000.C index c1b4f12e236..2ab6b83e403 100644 --- a/StarDb/Calibrations/tracker/ist2HitError.20050101.000000.C +++ b/StarDb/Calibrations/tracker/ist2HitError.20050101.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ist2HitError/ist2HitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/ist3HitError.20050101.000000.C b/StarDb/Calibrations/tracker/ist3HitError.20050101.000000.C index 35a1cc11e5d..3a403344dad 100644 --- a/StarDb/Calibrations/tracker/ist3HitError.20050101.000000.C +++ b/StarDb/Calibrations/tracker/ist3HitError.20050101.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.ist3HitError/ist3HitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tkf_tkfpar.20011201.000100.C b/StarDb/Calibrations/tracker/tkf_tkfpar.20011201.000100.C index a954fee0209..ef11c88719a 100644 --- a/StarDb/Calibrations/tracker/tkf_tkfpar.20011201.000100.C +++ b/StarDb/Calibrations/tracker/tkf_tkfpar.20011201.000100.C @@ -1,3 +1,5 @@ +#include "tables/St_tkf_tkfpar_Table.h" + TDataSet *CreateTable(){ // ----------------------------------------------------------------- // tkfpar Allocated rows: 1 Used rows: 1 Row diff --git a/StarDb/Calibrations/tracker/tkf_tkfpar.20050324.150000.C b/StarDb/Calibrations/tracker/tkf_tkfpar.20050324.150000.C index 3813d8fbe4e..603915b664d 100644 --- a/StarDb/Calibrations/tracker/tkf_tkfpar.20050324.150000.C +++ b/StarDb/Calibrations/tracker/tkf_tkfpar.20050324.150000.C @@ -1,3 +1,5 @@ +#include "tables/St_tkf_tkfpar_Table.h" + TDataSet *CreateTable(){ // ----------------------------------------------------------------- // tkfpar Allocated rows: 1 Used rows: 1 Row diff --git a/StarDb/Calibrations/tracker/tkf_tkfpar.C b/StarDb/Calibrations/tracker/tkf_tkfpar.C index a954fee0209..ef11c88719a 100644 --- a/StarDb/Calibrations/tracker/tkf_tkfpar.C +++ b/StarDb/Calibrations/tracker/tkf_tkfpar.C @@ -1,3 +1,5 @@ +#include "tables/St_tkf_tkfpar_Table.h" + TDataSet *CreateTable(){ // ----------------------------------------------------------------- // tkfpar Allocated rows: 1 Used rows: 1 Row diff --git a/StarDb/Calibrations/tracker/tpcInnerHitError.20091215.000003.C b/StarDb/Calibrations/tracker/tpcInnerHitError.20091215.000003.C index cc9bc14b109..2a43c51cb72 100644 --- a/StarDb/Calibrations/tracker/tpcInnerHitError.20091215.000003.C +++ b/StarDb/Calibrations/tracker/tpcInnerHitError.20091215.000003.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcInnerHitError.20100101.000000.C b/StarDb/Calibrations/tracker/tpcInnerHitError.20100101.000000.C index cc9bc14b109..2a43c51cb72 100644 --- a/StarDb/Calibrations/tracker/tpcInnerHitError.20100101.000000.C +++ b/StarDb/Calibrations/tracker/tpcInnerHitError.20100101.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcInnerHitError.C b/StarDb/Calibrations/tracker/tpcInnerHitError.C index cc9bc14b109..2a43c51cb72 100644 --- a/StarDb/Calibrations/tracker/tpcInnerHitError.C +++ b/StarDb/Calibrations/tracker/tpcInnerHitError.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcInnerHitError.y2009c.C b/StarDb/Calibrations/tracker/tpcInnerHitError.y2009c.C index cc9bc14b109..2a43c51cb72 100644 --- a/StarDb/Calibrations/tracker/tpcInnerHitError.y2009c.C +++ b/StarDb/Calibrations/tracker/tpcInnerHitError.y2009c.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcInnerHitError.y2010c.C b/StarDb/Calibrations/tracker/tpcInnerHitError.y2010c.C index cc9bc14b109..2a43c51cb72 100644 --- a/StarDb/Calibrations/tracker/tpcInnerHitError.y2010c.C +++ b/StarDb/Calibrations/tracker/tpcInnerHitError.y2010c.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcInnerHitError.y2011c.C b/StarDb/Calibrations/tracker/tpcInnerHitError.y2011c.C index cc9bc14b109..2a43c51cb72 100644 --- a/StarDb/Calibrations/tracker/tpcInnerHitError.y2011c.C +++ b/StarDb/Calibrations/tracker/tpcInnerHitError.y2011c.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcOuterHitError.20091215.000003.C b/StarDb/Calibrations/tracker/tpcOuterHitError.20091215.000003.C index 1734f46706f..bb2d858c8f4 100644 --- a/StarDb/Calibrations/tracker/tpcOuterHitError.20091215.000003.C +++ b/StarDb/Calibrations/tracker/tpcOuterHitError.20091215.000003.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcOuterHitError.20100101.000000.C b/StarDb/Calibrations/tracker/tpcOuterHitError.20100101.000000.C index 1734f46706f..bb2d858c8f4 100644 --- a/StarDb/Calibrations/tracker/tpcOuterHitError.20100101.000000.C +++ b/StarDb/Calibrations/tracker/tpcOuterHitError.20100101.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcOuterHitError.C b/StarDb/Calibrations/tracker/tpcOuterHitError.C index 1734f46706f..bb2d858c8f4 100644 --- a/StarDb/Calibrations/tracker/tpcOuterHitError.C +++ b/StarDb/Calibrations/tracker/tpcOuterHitError.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcOuterHitError.y2009c.C b/StarDb/Calibrations/tracker/tpcOuterHitError.y2009c.C index 1734f46706f..bb2d858c8f4 100644 --- a/StarDb/Calibrations/tracker/tpcOuterHitError.y2009c.C +++ b/StarDb/Calibrations/tracker/tpcOuterHitError.y2009c.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcOuterHitError.y2010c.C b/StarDb/Calibrations/tracker/tpcOuterHitError.y2010c.C index 1734f46706f..bb2d858c8f4 100644 --- a/StarDb/Calibrations/tracker/tpcOuterHitError.y2010c.C +++ b/StarDb/Calibrations/tracker/tpcOuterHitError.y2010c.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcOuterHitError.y2011c.C b/StarDb/Calibrations/tracker/tpcOuterHitError.y2011c.C index 1734f46706f..bb2d858c8f4 100644 --- a/StarDb/Calibrations/tracker/tpcOuterHitError.y2011c.C +++ b/StarDb/Calibrations/tracker/tpcOuterHitError.y2011c.C @@ -1,3 +1,5 @@ +#include "tables/St_HitError_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // someHitError Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Calibrations/tracker/tpcTrackingParameters.20010312.000011.C b/StarDb/Calibrations/tracker/tpcTrackingParameters.20010312.000011.C index 32a37da26bc..a85eba55b46 100644 --- a/StarDb/Calibrations/tracker/tpcTrackingParameters.20010312.000011.C +++ b/StarDb/Calibrations/tracker/tpcTrackingParameters.20010312.000011.C @@ -1,3 +1,5 @@ +#include "tables/St_TrackingParameters_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.data/StarDb/Calibrations/tracker/.DefaultTrackingParameters/DefaultTrackingParameters Allocated rows: 1 Used rows: 1 Row size: 32 bytes diff --git a/StarDb/Geometry/fst/fstOnTpc.20211110.000001.C b/StarDb/Geometry/fst/fstOnTpc.20211110.000001.C index 3b6965c076b..215e9355c83 100644 --- a/StarDb/Geometry/fst/fstOnTpc.20211110.000001.C +++ b/StarDb/Geometry/fst/fstOnTpc.20211110.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_Survey")) return 0; Survey_st row; diff --git a/StarDb/Geometry/fst/fstSensorOnWedge.20211110.000001.C b/StarDb/Geometry/fst/fstSensorOnWedge.20211110.000001.C index b145b957aff..6d283a743a3 100644 --- a/StarDb/Geometry/fst/fstSensorOnWedge.20211110.000001.C +++ b/StarDb/Geometry/fst/fstSensorOnWedge.20211110.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_Survey")) return 0; Survey_st row; diff --git a/StarDb/Geometry/fst/fstWedgeOnHss.20211110.000001.C b/StarDb/Geometry/fst/fstWedgeOnHss.20211110.000001.C index 1b6bc1b4fd0..2ba006d95a1 100644 --- a/StarDb/Geometry/fst/fstWedgeOnHss.20211110.000001.C +++ b/StarDb/Geometry/fst/fstWedgeOnHss.20211110.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_Survey")) return 0; Survey_st row; diff --git a/StarDb/Geometry/fst/hssOnFst.20211110.000001.C b/StarDb/Geometry/fst/hssOnFst.20211110.000001.C index 134e349d791..7825ecf19ce 100644 --- a/StarDb/Geometry/fst/hssOnFst.20211110.000001.C +++ b/StarDb/Geometry/fst/hssOnFst.20211110.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_Survey")) return 0; Survey_st row; diff --git a/StarDb/Geometry/ftpc/ftpcAsicMap.C b/StarDb/Geometry/ftpc/ftpcAsicMap.C index 124cf8b4abc..c4baaade9b1 100644 --- a/StarDb/Geometry/ftpc/ftpcAsicMap.C +++ b/StarDb/Geometry/ftpc/ftpcAsicMap.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcAsicMap_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/ftpc/.ftpcAsicMap/ftpcAsicMap Allocated rows: 1 Used rows: 1 Row size: 4 bytes diff --git a/StarDb/Geometry/ftpc/ftpcClusterGeom.C b/StarDb/Geometry/ftpc/ftpcClusterGeom.C index e03f4182077..db3ef945219 100644 --- a/StarDb/Geometry/ftpc/ftpcClusterGeom.C +++ b/StarDb/Geometry/ftpc/ftpcClusterGeom.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcClusterGeom_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/ftpc/.ftpcClusterGeom/ftpcClusterGeom Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/Geometry/ftpc/ftpcInnerCathode.C b/StarDb/Geometry/ftpc/ftpcInnerCathode.C index 1c13b6bc7c4..c3801b66b19 100644 --- a/StarDb/Geometry/ftpc/ftpcInnerCathode.C +++ b/StarDb/Geometry/ftpc/ftpcInnerCathode.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcInnerCathode_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/ftpc/.ftpcInnerCathode/ftpcInnerCathode Allocated rows: 1 Used rows: 1 Row size: 16 bytes diff --git a/StarDb/Geometry/ist/istLadderOnIstMisalign.20131210.000001.C b/StarDb/Geometry/ist/istLadderOnIstMisalign.20131210.000001.C index 45b27be2589..ef2a30d6493 100644 --- a/StarDb/Geometry/ist/istLadderOnIstMisalign.20131210.000001.C +++ b/StarDb/Geometry/ist/istLadderOnIstMisalign.20131210.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/ist/.istLadderOnIst/istLadderOnIstMisalign Allocated rows: 24 Used rows: 24 Row size: 180 bytes diff --git a/StarDb/Geometry/ist/istLadderOnIstMisalign.20140101.000001.C b/StarDb/Geometry/ist/istLadderOnIstMisalign.20140101.000001.C index 2e22abab2b7..397d2deec96 100644 --- a/StarDb/Geometry/ist/istLadderOnIstMisalign.20140101.000001.C +++ b/StarDb/Geometry/ist/istLadderOnIstMisalign.20140101.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/ist/.istLadderOnIst/istLadderOnIstMisalign Allocated rows: 24 Used rows: 24 Row size: 180 bytes diff --git a/StarDb/Geometry/ist/istLadderOnIstMisalign.20141210.000001.C b/StarDb/Geometry/ist/istLadderOnIstMisalign.20141210.000001.C index 45b27be2589..ef2a30d6493 100644 --- a/StarDb/Geometry/ist/istLadderOnIstMisalign.20141210.000001.C +++ b/StarDb/Geometry/ist/istLadderOnIstMisalign.20141210.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/ist/.istLadderOnIst/istLadderOnIstMisalign Allocated rows: 24 Used rows: 24 Row size: 180 bytes diff --git a/StarDb/Geometry/ist/istLadderOnIstMisalign.20150101.000001.C b/StarDb/Geometry/ist/istLadderOnIstMisalign.20150101.000001.C index 2fc9544e394..f69cf8a8e08 100644 --- a/StarDb/Geometry/ist/istLadderOnIstMisalign.20150101.000001.C +++ b/StarDb/Geometry/ist/istLadderOnIstMisalign.20150101.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/ist/.istLadderOnIst/istLadderOnIstMisalign Allocated rows: 24 Used rows: 24 Row size: 180 bytes diff --git a/StarDb/Geometry/ist/istLadderOnIstMisalign.20151210.000001.C b/StarDb/Geometry/ist/istLadderOnIstMisalign.20151210.000001.C index 45b27be2589..ef2a30d6493 100644 --- a/StarDb/Geometry/ist/istLadderOnIstMisalign.20151210.000001.C +++ b/StarDb/Geometry/ist/istLadderOnIstMisalign.20151210.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/ist/.istLadderOnIst/istLadderOnIstMisalign Allocated rows: 24 Used rows: 24 Row size: 180 bytes diff --git a/StarDb/Geometry/ist/istLadderOnIstMisalign.20160101.000001.C b/StarDb/Geometry/ist/istLadderOnIstMisalign.20160101.000001.C index 2fc9544e394..f69cf8a8e08 100644 --- a/StarDb/Geometry/ist/istLadderOnIstMisalign.20160101.000001.C +++ b/StarDb/Geometry/ist/istLadderOnIstMisalign.20160101.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/ist/.istLadderOnIst/istLadderOnIstMisalign Allocated rows: 24 Used rows: 24 Row size: 180 bytes diff --git a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20131210.000001.C b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20131210.000001.C index 269dbc68e08..97026e9bbda 100644 --- a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20131210.000001.C +++ b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20131210.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/pxl/.pxlLadderOnSector/pxlLadderOnSectorMisalign Allocated rows: 40 Used rows: 40 Row size: 180 bytes diff --git a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20140101.000000.C b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20140101.000000.C index 2d3e053d2bb..0ab2b7b630c 100644 --- a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20140101.000000.C +++ b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20140101.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/pxl/.pxlLadderOnSector/pxlLadderOnSectorMisalign Allocated rows: 40 Used rows: 40 Row size: 180 bytes diff --git a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20141210.000001.C b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20141210.000001.C index 269dbc68e08..97026e9bbda 100644 --- a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20141210.000001.C +++ b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20141210.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/pxl/.pxlLadderOnSector/pxlLadderOnSectorMisalign Allocated rows: 40 Used rows: 40 Row size: 180 bytes diff --git a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20150101.000001.C b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20150101.000001.C index bd822a70be2..4e425e8242f 100644 --- a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20150101.000001.C +++ b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20150101.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/pxl/.pxlLadderOnSector/pxlLadderOnSectorMisalign Allocated rows: 40 Used rows: 40 Row size: 180 bytes diff --git a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20151210.000001.C b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20151210.000001.C index 269dbc68e08..97026e9bbda 100644 --- a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20151210.000001.C +++ b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20151210.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/pxl/.pxlLadderOnSector/pxlLadderOnSectorMisalign Allocated rows: 40 Used rows: 40 Row size: 180 bytes diff --git a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20160101.000001.C b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20160101.000001.C index 7e57466b9b4..93118cc2dda 100644 --- a/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20160101.000001.C +++ b/StarDb/Geometry/pxl/pxlLadderOnSectorMisalign.20160101.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/pxl/.pxlLadderOnSector/pxlLadderOnSectorMisalign Allocated rows: 40 Used rows: 40 Row size: 180 bytes diff --git a/StarDb/Geometry/ssd/SsdLaddersOnSectors.C b/StarDb/Geometry/ssd/SsdLaddersOnSectors.C index 015c8f8f215..3af395e6be7 100644 --- a/StarDb/Geometry/ssd/SsdLaddersOnSectors.C +++ b/StarDb/Geometry/ssd/SsdLaddersOnSectors.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2005.C b/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2005.C index 015c8f8f215..3af395e6be7 100644 --- a/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2005.C +++ b/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2006.C b/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2006.C index 015c8f8f215..3af395e6be7 100644 --- a/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2006.C +++ b/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2007.C b/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2007.C index 015c8f8f215..3af395e6be7 100644 --- a/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2007.C +++ b/StarDb/Geometry/ssd/SsdLaddersOnSectors.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/ssd/SsdOnGlobal.C b/StarDb/Geometry/ssd/SsdOnGlobal.C index 9e1fa36f4eb..e9b10500ea5 100644 --- a/StarDb/Geometry/ssd/SsdOnGlobal.C +++ b/StarDb/Geometry/ssd/SsdOnGlobal.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0,.1,.1,.1,.1,.1,.1,"ideal position"}; diff --git a/StarDb/Geometry/ssd/SsdOnGlobal.y2005.C b/StarDb/Geometry/ssd/SsdOnGlobal.y2005.C index 9e1fa36f4eb..e9b10500ea5 100644 --- a/StarDb/Geometry/ssd/SsdOnGlobal.y2005.C +++ b/StarDb/Geometry/ssd/SsdOnGlobal.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0,.1,.1,.1,.1,.1,.1,"ideal position"}; diff --git a/StarDb/Geometry/ssd/SsdOnGlobal.y2006.C b/StarDb/Geometry/ssd/SsdOnGlobal.y2006.C index 9e1fa36f4eb..e9b10500ea5 100644 --- a/StarDb/Geometry/ssd/SsdOnGlobal.y2006.C +++ b/StarDb/Geometry/ssd/SsdOnGlobal.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0,.1,.1,.1,.1,.1,.1,"ideal position"}; diff --git a/StarDb/Geometry/ssd/SsdOnGlobal.y2007.C b/StarDb/Geometry/ssd/SsdOnGlobal.y2007.C index 9e1fa36f4eb..e9b10500ea5 100644 --- a/StarDb/Geometry/ssd/SsdOnGlobal.y2007.C +++ b/StarDb/Geometry/ssd/SsdOnGlobal.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0,.1,.1,.1,.1,.1,.1,"ideal position"}; diff --git a/StarDb/Geometry/ssd/SsdSectorsOnGlobal.C b/StarDb/Geometry/ssd/SsdSectorsOnGlobal.C index 744c067a508..e2fa95ee305 100644 --- a/StarDb/Geometry/ssd/SsdSectorsOnGlobal.C +++ b/StarDb/Geometry/ssd/SsdSectorsOnGlobal.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // SsdSectorsOnGlobal Allocated rows: 4 Used rows: 4 Row size: 180 bytes diff --git a/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2005.C b/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2005.C index 744c067a508..e2fa95ee305 100644 --- a/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2005.C +++ b/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // SsdSectorsOnGlobal Allocated rows: 4 Used rows: 4 Row size: 180 bytes diff --git a/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2006.C b/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2006.C index 744c067a508..e2fa95ee305 100644 --- a/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2006.C +++ b/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // SsdSectorsOnGlobal Allocated rows: 4 Used rows: 4 Row size: 180 bytes diff --git a/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2007.C b/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2007.C index 744c067a508..e2fa95ee305 100644 --- a/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2007.C +++ b/StarDb/Geometry/ssd/SsdSectorsOnGlobal.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // SsdSectorsOnGlobal Allocated rows: 4 Used rows: 4 Row size: 180 bytes diff --git a/StarDb/Geometry/ssd/SsdWafersOnLadders.C b/StarDb/Geometry/ssd/SsdWafersOnLadders.C index 73f0d1c51ac..ebec0634370 100644 --- a/StarDb/Geometry/ssd/SsdWafersOnLadders.C +++ b/StarDb/Geometry/ssd/SsdWafersOnLadders.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/ssd/SsdWafersOnLadders.y2005.C b/StarDb/Geometry/ssd/SsdWafersOnLadders.y2005.C index 73f0d1c51ac..ebec0634370 100644 --- a/StarDb/Geometry/ssd/SsdWafersOnLadders.y2005.C +++ b/StarDb/Geometry/ssd/SsdWafersOnLadders.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/ssd/SsdWafersOnLadders.y2006.C b/StarDb/Geometry/ssd/SsdWafersOnLadders.y2006.C index 73f0d1c51ac..ebec0634370 100644 --- a/StarDb/Geometry/ssd/SsdWafersOnLadders.y2006.C +++ b/StarDb/Geometry/ssd/SsdWafersOnLadders.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/ssd/SsdWafersOnLadders.y2007.C b/StarDb/Geometry/ssd/SsdWafersOnLadders.y2007.C index 73f0d1c51ac..ebec0634370 100644 --- a/StarDb/Geometry/ssd/SsdWafersOnLadders.y2007.C +++ b/StarDb/Geometry/ssd/SsdWafersOnLadders.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20131210.000001.C b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20131210.000001.C index 7bf09cc690c..20b5c2d1aec 100644 --- a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20131210.000001.C +++ b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20131210.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/sst/.sstLadderOnSst/sstLadderOnSstMisalign Allocated rows: 20 Used rows: 20 Row size: 180 bytes diff --git a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20140101.000001.C b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20140101.000001.C index b1c9a12e01b..50814dfaeb3 100644 --- a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20140101.000001.C +++ b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20140101.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/sst/.sstLadderOnSst/sstLadderOnSstMisalign Allocated rows: 20 Used rows: 20 Row size: 180 bytes diff --git a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20141210.000001.C b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20141210.000001.C index 7bf09cc690c..20b5c2d1aec 100644 --- a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20141210.000001.C +++ b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20141210.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/sst/.sstLadderOnSst/sstLadderOnSstMisalign Allocated rows: 20 Used rows: 20 Row size: 180 bytes diff --git a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20150101.000001.C b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20150101.000001.C index 4a43c8862ee..b41a9b7e47f 100644 --- a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20150101.000001.C +++ b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20150101.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/sst/.sstLadderOnSst/sstLadderOnSstMisalign Allocated rows: 20 Used rows: 20 Row size: 180 bytes diff --git a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20151210.000001.C b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20151210.000001.C index 7bf09cc690c..20b5c2d1aec 100644 --- a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20151210.000001.C +++ b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20151210.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/sst/.sstLadderOnSst/sstLadderOnSstMisalign Allocated rows: 20 Used rows: 20 Row size: 180 bytes diff --git a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20160101.000001.C b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20160101.000001.C index 00aec101ffc..830446a27c2 100644 --- a/StarDb/Geometry/sst/sstLadderOnSstMisalign.20160101.000001.C +++ b/StarDb/Geometry/sst/sstLadderOnSstMisalign.20160101.000001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/sst/.sstLadderOnSst/sstLadderOnSstMisalign Allocated rows: 20 Used rows: 20 Row size: 180 bytes diff --git a/StarDb/Geometry/svt/LadderOnShell.C b/StarDb/Geometry/svt/LadderOnShell.C index 07ea820b656..86e989f7a10 100644 --- a/StarDb/Geometry/svt/LadderOnShell.C +++ b/StarDb/Geometry/svt/LadderOnShell.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/LadderOnShell.y2005.C b/StarDb/Geometry/svt/LadderOnShell.y2005.C index 07ea820b656..86e989f7a10 100644 --- a/StarDb/Geometry/svt/LadderOnShell.y2005.C +++ b/StarDb/Geometry/svt/LadderOnShell.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/LadderOnShell.y2006.C b/StarDb/Geometry/svt/LadderOnShell.y2006.C index 07ea820b656..86e989f7a10 100644 --- a/StarDb/Geometry/svt/LadderOnShell.y2006.C +++ b/StarDb/Geometry/svt/LadderOnShell.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/LadderOnShell.y2007.C b/StarDb/Geometry/svt/LadderOnShell.y2007.C index 07ea820b656..86e989f7a10 100644 --- a/StarDb/Geometry/svt/LadderOnShell.y2007.C +++ b/StarDb/Geometry/svt/LadderOnShell.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/LadderOnSurvey.y2001.C b/StarDb/Geometry/svt/LadderOnSurvey.y2001.C index bf2a0777df7..6aaffc56aaf 100644 --- a/StarDb/Geometry/svt/LadderOnSurvey.y2001.C +++ b/StarDb/Geometry/svt/LadderOnSurvey.y2001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/LadderOnSurvey.y2005.C b/StarDb/Geometry/svt/LadderOnSurvey.y2005.C index bf2a0777df7..6aaffc56aaf 100644 --- a/StarDb/Geometry/svt/LadderOnSurvey.y2005.C +++ b/StarDb/Geometry/svt/LadderOnSurvey.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/LadderOnSurvey.y2006.C b/StarDb/Geometry/svt/LadderOnSurvey.y2006.C index bf2a0777df7..6aaffc56aaf 100644 --- a/StarDb/Geometry/svt/LadderOnSurvey.y2006.C +++ b/StarDb/Geometry/svt/LadderOnSurvey.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/LadderOnSurvey.y2007.C b/StarDb/Geometry/svt/LadderOnSurvey.y2007.C index bf2a0777df7..6aaffc56aaf 100644 --- a/StarDb/Geometry/svt/LadderOnSurvey.y2007.C +++ b/StarDb/Geometry/svt/LadderOnSurvey.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/ShellOnGlobal.y2001.C b/StarDb/Geometry/svt/ShellOnGlobal.y2001.C index a463028fb81..8eb5266e8d1 100644 --- a/StarDb/Geometry/svt/ShellOnGlobal.y2001.C +++ b/StarDb/Geometry/svt/ShellOnGlobal.y2001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/ShellOnGlobal.y2005.C b/StarDb/Geometry/svt/ShellOnGlobal.y2005.C index a463028fb81..8eb5266e8d1 100644 --- a/StarDb/Geometry/svt/ShellOnGlobal.y2005.C +++ b/StarDb/Geometry/svt/ShellOnGlobal.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/ShellOnGlobal.y2006.C b/StarDb/Geometry/svt/ShellOnGlobal.y2006.C index a463028fb81..8eb5266e8d1 100644 --- a/StarDb/Geometry/svt/ShellOnGlobal.y2006.C +++ b/StarDb/Geometry/svt/ShellOnGlobal.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/ShellOnGlobal.y2007.C b/StarDb/Geometry/svt/ShellOnGlobal.y2007.C index a463028fb81..8eb5266e8d1 100644 --- a/StarDb/Geometry/svt/ShellOnGlobal.y2007.C +++ b/StarDb/Geometry/svt/ShellOnGlobal.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/SvtOnGlobal.y2001.C b/StarDb/Geometry/svt/SvtOnGlobal.y2001.C index f1def4c5c73..ef5562fb909 100644 --- a/StarDb/Geometry/svt/SvtOnGlobal.y2001.C +++ b/StarDb/Geometry/svt/SvtOnGlobal.y2001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0,.1,.1,.1,.1,.1,.1,"ideal position"}; diff --git a/StarDb/Geometry/svt/SvtOnGlobal.y2005.C b/StarDb/Geometry/svt/SvtOnGlobal.y2005.C index f1def4c5c73..ef5562fb909 100644 --- a/StarDb/Geometry/svt/SvtOnGlobal.y2005.C +++ b/StarDb/Geometry/svt/SvtOnGlobal.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0,.1,.1,.1,.1,.1,.1,"ideal position"}; diff --git a/StarDb/Geometry/svt/SvtOnGlobal.y2006.C b/StarDb/Geometry/svt/SvtOnGlobal.y2006.C index f1def4c5c73..ef5562fb909 100644 --- a/StarDb/Geometry/svt/SvtOnGlobal.y2006.C +++ b/StarDb/Geometry/svt/SvtOnGlobal.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0,.1,.1,.1,.1,.1,.1,"ideal position"}; diff --git a/StarDb/Geometry/svt/SvtOnGlobal.y2007.C b/StarDb/Geometry/svt/SvtOnGlobal.y2007.C index f1def4c5c73..ef5562fb909 100644 --- a/StarDb/Geometry/svt/SvtOnGlobal.y2007.C +++ b/StarDb/Geometry/svt/SvtOnGlobal.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0,.1,.1,.1,.1,.1,.1,"ideal position"}; diff --git a/StarDb/Geometry/svt/WaferOnLadder.y2001.C b/StarDb/Geometry/svt/WaferOnLadder.y2001.C index eb14ff8667a..5da89a23287 100644 --- a/StarDb/Geometry/svt/WaferOnLadder.y2001.C +++ b/StarDb/Geometry/svt/WaferOnLadder.y2001.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/WaferOnLadder.y2005.C b/StarDb/Geometry/svt/WaferOnLadder.y2005.C index eb14ff8667a..5da89a23287 100644 --- a/StarDb/Geometry/svt/WaferOnLadder.y2005.C +++ b/StarDb/Geometry/svt/WaferOnLadder.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/WaferOnLadder.y2006.C b/StarDb/Geometry/svt/WaferOnLadder.y2006.C index eb14ff8667a..5da89a23287 100644 --- a/StarDb/Geometry/svt/WaferOnLadder.y2006.C +++ b/StarDb/Geometry/svt/WaferOnLadder.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/svt/WaferOnLadder.y2007.C b/StarDb/Geometry/svt/WaferOnLadder.y2007.C index eb14ff8667a..5da89a23287 100644 --- a/StarDb/Geometry/svt/WaferOnLadder.y2007.C +++ b/StarDb/Geometry/svt/WaferOnLadder.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // diff --git a/StarDb/Geometry/tpc/TpcHalfPosition.C b/StarDb/Geometry/tpc/TpcHalfPosition.C index ce1418916eb..7a1631ed4e2 100644 --- a/StarDb/Geometry/tpc/TpcHalfPosition.C +++ b/StarDb/Geometry/tpc/TpcHalfPosition.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0, 1e-5,1e-5,1e-4,4e-3,4e-3,4e-3,"Ideal"}; diff --git a/StarDb/Geometry/tpc/TpcHalfPosition.y2019.C b/StarDb/Geometry/tpc/TpcHalfPosition.y2019.C index ce1418916eb..7a1631ed4e2 100755 --- a/StarDb/Geometry/tpc/TpcHalfPosition.y2019.C +++ b/StarDb/Geometry/tpc/TpcHalfPosition.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0, 1e-5,1e-5,1e-4,4e-3,4e-3,4e-3,"Ideal"}; diff --git a/StarDb/Geometry/tpc/TpcInnerSectorPosition.C b/StarDb/Geometry/tpc/TpcInnerSectorPosition.C index cbe23df3555..b3681f300df 100644 --- a/StarDb/Geometry/tpc/TpcInnerSectorPosition.C +++ b/StarDb/Geometry/tpc/TpcInnerSectorPosition.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0, 1e-5,1e-5,1e-4,4e-3,4e-3,4e-3,"Ideal"}; diff --git a/StarDb/Geometry/tpc/TpcInnerSectorPositionB.C b/StarDb/Geometry/tpc/TpcInnerSectorPositionB.C index cbe23df3555..b3681f300df 100644 --- a/StarDb/Geometry/tpc/TpcInnerSectorPositionB.C +++ b/StarDb/Geometry/tpc/TpcInnerSectorPositionB.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0, 1e-5,1e-5,1e-4,4e-3,4e-3,4e-3,"Ideal"}; diff --git a/StarDb/Geometry/tpc/TpcInnerSectorPositionB.y2016.C b/StarDb/Geometry/tpc/TpcInnerSectorPositionB.y2016.C index cbe23df3555..b3681f300df 100755 --- a/StarDb/Geometry/tpc/TpcInnerSectorPositionB.y2016.C +++ b/StarDb/Geometry/tpc/TpcInnerSectorPositionB.y2016.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0, 1e-5,1e-5,1e-4,4e-3,4e-3,4e-3,"Ideal"}; diff --git a/StarDb/Geometry/tpc/TpcOuterSectorPosition.C b/StarDb/Geometry/tpc/TpcOuterSectorPosition.C index 09c697028fa..aad8a00ab56 100644 --- a/StarDb/Geometry/tpc/TpcOuterSectorPosition.C +++ b/StarDb/Geometry/tpc/TpcOuterSectorPosition.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0, 1e-5,1e-5,1e-4,4e-3,4e-3,4e-3,"Ideal"}; diff --git a/StarDb/Geometry/tpc/TpcOuterSectorPositionB.C b/StarDb/Geometry/tpc/TpcOuterSectorPositionB.C index eb07da22fd4..ff6c2e22390 100644 --- a/StarDb/Geometry/tpc/TpcOuterSectorPositionB.C +++ b/StarDb/Geometry/tpc/TpcOuterSectorPositionB.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = { diff --git a/StarDb/Geometry/tpc/TpcPosition.C b/StarDb/Geometry/tpc/TpcPosition.C index 6ad4f9cf4f8..25d25a744f1 100644 --- a/StarDb/Geometry/tpc/TpcPosition.C +++ b/StarDb/Geometry/tpc/TpcPosition.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = { diff --git a/StarDb/Geometry/tpc/TpcSuperSectorPosition.C b/StarDb/Geometry/tpc/TpcSuperSectorPosition.C index ca9dc8b0b7a..de38a263133 100644 --- a/StarDb/Geometry/tpc/TpcSuperSectorPosition.C +++ b/StarDb/Geometry/tpc/TpcSuperSectorPosition.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = {0, 1,0,0, 0,1,0, 0,0,1, 0,0,0, 1e-5,1e-5,1e-4,4e-3,4e-3,4e-3,"Ideal"}; diff --git a/StarDb/Geometry/tpc/TpcSuperSectorPositionB.C b/StarDb/Geometry/tpc/TpcSuperSectorPositionB.C index 89b83696a20..88c852650ae 100644 --- a/StarDb/Geometry/tpc/TpcSuperSectorPositionB.C +++ b/StarDb/Geometry/tpc/TpcSuperSectorPositionB.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = { diff --git a/StarDb/Geometry/tpc/TpcSuperSectorPositionB.y2019.C b/StarDb/Geometry/tpc/TpcSuperSectorPositionB.y2019.C index 89b83696a20..88c852650ae 100755 --- a/StarDb/Geometry/tpc/TpcSuperSectorPositionB.y2019.C +++ b/StarDb/Geometry/tpc/TpcSuperSectorPositionB.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = { diff --git a/StarDb/Geometry/tpc/iTPCSurvey.C b/StarDb/Geometry/tpc/iTPCSurvey.C index 72546e8ef9c..5e823e9b0a2 100644 --- a/StarDb/Geometry/tpc/iTPCSurvey.C +++ b/StarDb/Geometry/tpc/iTPCSurvey.C @@ -1,3 +1,5 @@ +#include "tables/St_iTPCSurvey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_iTPCSurvey")) return 0; iTPCSurvey_st row[24] = { diff --git a/StarDb/Geometry/tpc/iTPCSurvey.y2019.C b/StarDb/Geometry/tpc/iTPCSurvey.y2019.C index 3adab08a82f..c07bbf72980 100644 --- a/StarDb/Geometry/tpc/iTPCSurvey.y2019.C +++ b/StarDb/Geometry/tpc/iTPCSurvey.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_iTPCSurvey_Table.h" + TDataSet *CreateTable() { /* Shanmuganathan Prashanth 11/14/18 Position iTPC-Sector diff --git a/StarDb/Geometry/tpc/itpcPadPlanes.C b/StarDb/Geometry/tpc/itpcPadPlanes.C index a4d87ebd5de..3c2d19e597b 100644 --- a/StarDb/Geometry/tpc/itpcPadPlanes.C +++ b/StarDb/Geometry/tpc/itpcPadPlanes.C @@ -1,3 +1,5 @@ +#include "tables/St_itpcPadPlanes_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/tpc/.itpcPadPlanes/itpcPadPlanes Allocated rows: 1 Used rows: 1 Row size: 1392 bytes diff --git a/StarDb/Geometry/tpc/tpcGlobalPosition.C b/StarDb/Geometry/tpc/tpcGlobalPosition.C index 9aa62d73367..74bd14c60c5 100644 --- a/StarDb/Geometry/tpc/tpcGlobalPosition.C +++ b/StarDb/Geometry/tpc/tpcGlobalPosition.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcGlobalPosition_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcGlobalPosition")) return 0; tpcGlobalPosition_st row; diff --git a/StarDb/Geometry/tpc/tpcPadConfig.C b/StarDb/Geometry/tpc/tpcPadConfig.C index e51b2f8592d..e41376544c0 100644 --- a/StarDb/Geometry/tpc/tpcPadConfig.C +++ b/StarDb/Geometry/tpc/tpcPadConfig.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcPadConfig_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/tpc/.tpcPadConfig/tpcPadConfig Allocated rows: 1 Used rows: 1 Row size: 1392 bytes diff --git a/StarDb/Geometry/tpc/tpcPadConfig.y2018.C b/StarDb/Geometry/tpc/tpcPadConfig.y2018.C index 76c36cf1083..5bf72970745 100644 --- a/StarDb/Geometry/tpc/tpcPadConfig.y2018.C +++ b/StarDb/Geometry/tpc/tpcPadConfig.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcPadConfig_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/tpc/.tpcPadConfig/tpcPadConfig Allocated rows: 1 Used rows: 1 Row size: 1392 bytes diff --git a/StarDb/Geometry/tpc/tpcPadConfig.y2019.C b/StarDb/Geometry/tpc/tpcPadConfig.y2019.C index f9dfd73ed34..a73554331c4 100644 --- a/StarDb/Geometry/tpc/tpcPadConfig.y2019.C +++ b/StarDb/Geometry/tpc/tpcPadConfig.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcPadConfig_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/tpc/.tpcPadConfig/tpcPadConfig Allocated rows: 1 Used rows: 1 Row size: 1392 bytes diff --git a/StarDb/Geometry/tpc/tpcPadPlanes.C b/StarDb/Geometry/tpc/tpcPadPlanes.C index 6cf30863c5c..33cc36f6c75 100644 --- a/StarDb/Geometry/tpc/tpcPadPlanes.C +++ b/StarDb/Geometry/tpc/tpcPadPlanes.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcPadPlanes_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/Geometry/tpc/.tpcPadPlanes/tpcPadPlanes Allocated rows: 1 Used rows: 1 Row size: 1392 bytes diff --git a/StarDb/RunLog/MagFactor.y2011.C b/StarDb/RunLog/MagFactor.y2011.C index 85c3d18893e..cfa38eebc52 100644 --- a/StarDb/RunLog/MagFactor.y2011.C +++ b/StarDb/RunLog/MagFactor.y2011.C @@ -1,3 +1,5 @@ +#include "tables/St_MagFactor_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StarDb/.data/StarDb/RunLog/MagFactor Allocated rows: 1 Used rows: 1 Row size: 4 bytes diff --git a/StarDb/RunLog/MagFactor.y2012.C b/StarDb/RunLog/MagFactor.y2012.C index 85c3d18893e..cfa38eebc52 100644 --- a/StarDb/RunLog/MagFactor.y2012.C +++ b/StarDb/RunLog/MagFactor.y2012.C @@ -1,3 +1,5 @@ +#include "tables/St_MagFactor_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StarDb/.data/StarDb/RunLog/MagFactor Allocated rows: 1 Used rows: 1 Row size: 4 bytes diff --git a/StarDb/RunLog/MagFactor.y2013.C b/StarDb/RunLog/MagFactor.y2013.C index 85c3d18893e..cfa38eebc52 100644 --- a/StarDb/RunLog/MagFactor.y2013.C +++ b/StarDb/RunLog/MagFactor.y2013.C @@ -1,3 +1,5 @@ +#include "tables/St_MagFactor_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StarDb/.data/StarDb/RunLog/MagFactor Allocated rows: 1 Used rows: 1 Row size: 4 bytes diff --git a/StarDb/RunLog/MagFactor.y2014.C b/StarDb/RunLog/MagFactor.y2014.C index 85c3d18893e..cfa38eebc52 100644 --- a/StarDb/RunLog/MagFactor.y2014.C +++ b/StarDb/RunLog/MagFactor.y2014.C @@ -1,3 +1,5 @@ +#include "tables/St_MagFactor_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // StarDb/.data/StarDb/RunLog/MagFactor Allocated rows: 1 Used rows: 1 Row size: 4 bytes diff --git a/StarDb/RunLog/onl/beamInfo.C b/StarDb/RunLog/onl/beamInfo.C index 77eb6ef4589..b594c12c484 100644 --- a/StarDb/RunLog/onl/beamInfo.C +++ b/StarDb/RunLog/onl/beamInfo.C @@ -1,3 +1,5 @@ +#include "tables/St_beamInfo_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/RunLog/onl/.beamInfo/beamInfo Allocated rows: 1 Used rows: 1 Row size: 120 bytes diff --git a/StarDb/RunLog/onl/starClockOnl.C b/StarDb/RunLog/onl/starClockOnl.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.C +++ b/StarDb/RunLog/onl/starClockOnl.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2001.C b/StarDb/RunLog/onl/starClockOnl.y2001.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2001.C +++ b/StarDb/RunLog/onl/starClockOnl.y2001.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2003.C b/StarDb/RunLog/onl/starClockOnl.y2003.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2003.C +++ b/StarDb/RunLog/onl/starClockOnl.y2003.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2004.C b/StarDb/RunLog/onl/starClockOnl.y2004.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2004.C +++ b/StarDb/RunLog/onl/starClockOnl.y2004.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2005.C b/StarDb/RunLog/onl/starClockOnl.y2005.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2005.C +++ b/StarDb/RunLog/onl/starClockOnl.y2005.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2006.C b/StarDb/RunLog/onl/starClockOnl.y2006.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2006.C +++ b/StarDb/RunLog/onl/starClockOnl.y2006.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2007.C b/StarDb/RunLog/onl/starClockOnl.y2007.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2007.C +++ b/StarDb/RunLog/onl/starClockOnl.y2007.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2008.C b/StarDb/RunLog/onl/starClockOnl.y2008.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2008.C +++ b/StarDb/RunLog/onl/starClockOnl.y2008.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2009.C b/StarDb/RunLog/onl/starClockOnl.y2009.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2009.C +++ b/StarDb/RunLog/onl/starClockOnl.y2009.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2010.C b/StarDb/RunLog/onl/starClockOnl.y2010.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2010.C +++ b/StarDb/RunLog/onl/starClockOnl.y2010.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2011.C b/StarDb/RunLog/onl/starClockOnl.y2011.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2011.C +++ b/StarDb/RunLog/onl/starClockOnl.y2011.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2012.C b/StarDb/RunLog/onl/starClockOnl.y2012.C index d978981e9d8..3e76df4076a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2012.C +++ b/StarDb/RunLog/onl/starClockOnl.y2012.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2013.C b/StarDb/RunLog/onl/starClockOnl.y2013.C index 2341853c622..c307d40e65a 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2013.C +++ b/StarDb/RunLog/onl/starClockOnl.y2013.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starClockOnl.y2014.C b/StarDb/RunLog/onl/starClockOnl.y2014.C index 3ef55b54330..944b7a2e766 100644 --- a/StarDb/RunLog/onl/starClockOnl.y2014.C +++ b/StarDb/RunLog/onl/starClockOnl.y2014.C @@ -1,3 +1,5 @@ +#include "tables/St_starClockOnl_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_starClockOnl")) return 0; starClockOnl_st row; diff --git a/StarDb/RunLog/onl/starMagOnl.C b/StarDb/RunLog/onl/starMagOnl.C index 316f981462f..2be6e1a0554 100644 --- a/StarDb/RunLog/onl/starMagOnl.C +++ b/StarDb/RunLog/onl/starMagOnl.C @@ -1,3 +1,5 @@ +#include "tables/St_starMagOnl_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // db/.const/StarDb/RunLog/onl/.starMagOnl/starMagOnl Allocated rows: 1 Used rows: 1 Row size: 16 bytes diff --git a/StarDb/RunLog/onl/tpcRDOMasks.C b/StarDb/RunLog/onl/tpcRDOMasks.C index a40502c19e9..a0683ff85a1 100644 --- a/StarDb/RunLog/onl/tpcRDOMasks.C +++ b/StarDb/RunLog/onl/tpcRDOMasks.C @@ -1,3 +1,5 @@ +#include "tables/St_tpcRDOMasks_Table.h" + TDataSet *CreateTable() { if (!TClass::GetClass("St_tpcRDOMasks")) return 0; tpcRDOMasks_st row; diff --git a/StarDb/RunLog/onl/triggerID.C b/StarDb/RunLog/onl/triggerID.C index 3987acb8e38..6e061f8000a 100644 --- a/StarDb/RunLog/onl/triggerID.C +++ b/StarDb/RunLog/onl/triggerID.C @@ -1,3 +1,5 @@ +#include "tables/St_triggerID_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // bfc/.make/db/.const/StarDb/RunLog/onl/.triggerID/triggerID Allocated rows: 1 Used rows: 1 Row size: 32 bytes diff --git a/StarDb/StMagF/MagFieldRotation.y2013.C b/StarDb/StMagF/MagFieldRotation.y2013.C index a31d3fa8a46..1ac09308ea7 100644 --- a/StarDb/StMagF/MagFieldRotation.y2013.C +++ b/StarDb/StMagF/MagFieldRotation.y2013.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = { diff --git a/StarDb/StMagF/MagFieldRotation.y2014.C b/StarDb/StMagF/MagFieldRotation.y2014.C index a31d3fa8a46..1ac09308ea7 100644 --- a/StarDb/StMagF/MagFieldRotation.y2014.C +++ b/StarDb/StMagF/MagFieldRotation.y2014.C @@ -1,3 +1,5 @@ +#include "tables/St_Survey_Table.h" + TDataSet *CreateTable() { if (!gROOT->GetClass("St_Survey")) return 0; Survey_st row = { diff --git a/StarDb/ctf/ctg/ctb.C b/StarDb/ctf/ctg/ctb.C index e6c49ccb2d2..edcf63e7010 100644 --- a/StarDb/ctf/ctg/ctb.C +++ b/StarDb/ctf/ctg/ctb.C @@ -1,3 +1,5 @@ +#include "tables/St_ctg_geo_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/ctb Allocated rows: 1 Used rows: 1 Row size: 68 bytes diff --git a/StarDb/ctf/ctg/ctb_slat.C b/StarDb/ctf/ctg/ctb_slat.C index c1f42698e3e..d36571676e8 100644 --- a/StarDb/ctf/ctg/ctb_slat.C +++ b/StarDb/ctf/ctg/ctb_slat.C @@ -1,3 +1,5 @@ +#include "tables/St_ctg_slat_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // params/ctf/ctg/ctb_slat Allocated rows: 240 Used rows: 240 Row size: 32 bytes diff --git a/StarDb/ctf/ctg/ctb_slat_eta.C b/StarDb/ctf/ctg/ctb_slat_eta.C index 6e5ce69bf0b..5a78352c666 100644 --- a/StarDb/ctf/ctg/ctb_slat_eta.C +++ b/StarDb/ctf/ctg/ctb_slat_eta.C @@ -1,3 +1,5 @@ +#include "tables/St_ctg_slat_eta_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/ctb_slat_eta Allocated rows: 4 Used rows: 4 Row size: 36 bytes diff --git a/StarDb/ctf/ctg/ctb_slat_phi.C b/StarDb/ctf/ctg/ctb_slat_phi.C index 42e7147778e..3778e198f1e 100644 --- a/StarDb/ctf/ctg/ctb_slat_phi.C +++ b/StarDb/ctf/ctg/ctb_slat_phi.C @@ -1,3 +1,5 @@ +#include "tables/St_ctg_slat_phi_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/ctb_slat_phi Allocated rows: 60 Used rows: 60 Row size: 16 bytes diff --git a/StarDb/ctf/ctg/tof.C b/StarDb/ctf/ctg/tof.C index 8cb8290701d..56b1cf65675 100644 --- a/StarDb/ctf/ctg/tof.C +++ b/StarDb/ctf/ctg/tof.C @@ -1,3 +1,5 @@ +#include "tables/St_ctg_geo_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/tof Allocated rows: 1 Used rows: 1 Row size: 68 bytes diff --git a/StarDb/ctf/ctg/tof_slat.C b/StarDb/ctf/ctg/tof_slat.C index 69be2e8158c..686372af301 100644 --- a/StarDb/ctf/ctg/tof_slat.C +++ b/StarDb/ctf/ctg/tof_slat.C @@ -1,3 +1,5 @@ +#include "tables/St_ctg_slat_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // params/ctf/ctg/tof_slat Allocated rows: 5400 Used rows: 5400 Row size: 32 bytes diff --git a/StarDb/ctf/ctg/tof_slat_eta.C b/StarDb/ctf/ctg/tof_slat_eta.C index cc79c23e6d4..f049a85802b 100644 --- a/StarDb/ctf/ctg/tof_slat_eta.C +++ b/StarDb/ctf/ctg/tof_slat_eta.C @@ -1,3 +1,5 @@ +#include "tables/St_ctg_slat_eta_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/tof_slat_eta Allocated rows: 18 Used rows: 18 Row size: 36 bytes diff --git a/StarDb/ctf/ctg/tof_slat_phi.C b/StarDb/ctf/ctg/tof_slat_phi.C index 03007ded5ef..82401e6c8d5 100644 --- a/StarDb/ctf/ctg/tof_slat_phi.C +++ b/StarDb/ctf/ctg/tof_slat_phi.C @@ -1,3 +1,5 @@ +#include "tables/St_ctg_slat_phi_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ctg/tof_slat_phi Allocated rows: 300 Used rows: 300 Row size: 16 bytes diff --git a/StarDb/ctf/cts/cts_ctb.C b/StarDb/ctf/cts/cts_ctb.C index 3d91a214b89..3b45f2e2a5a 100644 --- a/StarDb/ctf/cts/cts_ctb.C +++ b/StarDb/ctf/cts/cts_ctb.C @@ -1,3 +1,5 @@ +#include "tables/St_cts_mpara_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cts/cts_ctb Allocated rows: 1 Used rows: 1 Row size: 1076 bytes diff --git a/StarDb/ctf/cts/cts_tof.C b/StarDb/ctf/cts/cts_tof.C index f5941ee3d6f..b8d356a7aec 100644 --- a/StarDb/ctf/cts/cts_tof.C +++ b/StarDb/ctf/cts/cts_tof.C @@ -1,3 +1,5 @@ +#include "tables/St_cts_mpara_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cts/cts_tof Allocated rows: 1 Used rows: 1 Row size: 1076 bytes diff --git a/StarDb/ebye/sca/sca_const.C b/StarDb/ebye/sca/sca_const.C index 2ef42f60287..88830b2a482 100644 --- a/StarDb/ebye/sca/sca_const.C +++ b/StarDb/ebye/sca/sca_const.C @@ -1,3 +1,5 @@ +#include "tables/St_sca_const_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/sca/sca_const Allocated rows: 1 Used rows: 1 Row size: 112 bytes diff --git a/StarDb/ebye/sca/sca_filter_const.C b/StarDb/ebye/sca/sca_filter_const.C index 6602aa039c1..ad8460614b8 100644 --- a/StarDb/ebye/sca/sca_filter_const.C +++ b/StarDb/ebye/sca/sca_filter_const.C @@ -1,3 +1,5 @@ +#include "tables/St_sca_filter_const_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/sca/sca_filter_const Allocated rows: 1 Used rows: 1 Row size: 28 bytes diff --git a/StarDb/ebye/sca/sca_switch.C b/StarDb/ebye/sca/sca_switch.C index e4fe71af735..28e62269c33 100644 --- a/StarDb/ebye/sca/sca_switch.C +++ b/StarDb/ebye/sca/sca_switch.C @@ -1,3 +1,5 @@ +#include "tables/St_sca_switch_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/sca/sca_switch Allocated rows: 1 Used rows: 1 Row size: 16 bytes diff --git a/StarDb/emc/cal/ems_cal_control.C b/StarDb/emc/cal/ems_cal_control.C index 04c3cf441ba..558e7f24090 100644 --- a/StarDb/emc/cal/ems_cal_control.C +++ b/StarDb/emc/cal/ems_cal_control.C @@ -1,3 +1,5 @@ +#include "tables/St_ems_cal_control_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/ems_cal_control Allocated rows: 1 Used rows: 1 Row size: 52 bytes diff --git a/StarDb/emc/cal/org_ped_bemc.C b/StarDb/emc/cal/org_ped_bemc.C index b8ca0da4c39..99063d27e9e 100644 --- a/StarDb/emc/cal/org_ped_bemc.C +++ b/StarDb/emc/cal/org_ped_bemc.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_pedestal_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bemc Allocated rows: 4800 Used rows: 4800 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_ped_bemc_h.C b/StarDb/emc/cal/org_ped_bemc_h.C index eb79a6b34a5..7e42e164066 100644 --- a/StarDb/emc/cal/org_ped_bemc_h.C +++ b/StarDb/emc/cal/org_ped_bemc_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bemc_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_ped_bprs.C b/StarDb/emc/cal/org_ped_bprs.C index a6b91e91589..5145fcfb92c 100644 --- a/StarDb/emc/cal/org_ped_bprs.C +++ b/StarDb/emc/cal/org_ped_bprs.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_pedestal_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bprs Allocated rows: 4800 Used rows: 4800 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_ped_bprs_h.C b/StarDb/emc/cal/org_ped_bprs_h.C index 884e40b83d3..7fd1063625f 100644 --- a/StarDb/emc/cal/org_ped_bprs_h.C +++ b/StarDb/emc/cal/org_ped_bprs_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bprs_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_ped_bsmde.C b/StarDb/emc/cal/org_ped_bsmde.C index d10c5c342f4..17083995cdb 100644 --- a/StarDb/emc/cal/org_ped_bsmde.C +++ b/StarDb/emc/cal/org_ped_bsmde.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_pedestal_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bsmde Allocated rows: 18000 Used rows: 18000 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_ped_bsmde_h.C b/StarDb/emc/cal/org_ped_bsmde_h.C index 60d49042e98..38a4d084a71 100644 --- a/StarDb/emc/cal/org_ped_bsmde_h.C +++ b/StarDb/emc/cal/org_ped_bsmde_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bsmde_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_ped_bsmdp.C b/StarDb/emc/cal/org_ped_bsmdp.C index a3aac06a465..937756fc6ae 100644 --- a/StarDb/emc/cal/org_ped_bsmdp.C +++ b/StarDb/emc/cal/org_ped_bsmdp.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_pedestal_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bsmdp Allocated rows: 18000 Used rows: 18000 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_ped_bsmdp_h.C b/StarDb/emc/cal/org_ped_bsmdp_h.C index fe81b1ab7a9..e12d79921f4 100644 --- a/StarDb/emc/cal/org_ped_bsmdp_h.C +++ b/StarDb/emc/cal/org_ped_bsmdp_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_bsmdp_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_ped_eemc.C b/StarDb/emc/cal/org_ped_eemc.C index 6d4940ea34a..5e392a3c2e4 100644 --- a/StarDb/emc/cal/org_ped_eemc.C +++ b/StarDb/emc/cal/org_ped_eemc.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_pedestal_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_eemc Allocated rows: 1440 Used rows: 1440 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_ped_eemc_h.C b/StarDb/emc/cal/org_ped_eemc_h.C index 13fbab92544..97f536438f2 100644 --- a/StarDb/emc/cal/org_ped_eemc_h.C +++ b/StarDb/emc/cal/org_ped_eemc_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_eemc_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_ped_eprs.C b/StarDb/emc/cal/org_ped_eprs.C index 64af4b0e69e..177e600d2a3 100644 --- a/StarDb/emc/cal/org_ped_eprs.C +++ b/StarDb/emc/cal/org_ped_eprs.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_pedestal_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_eprs Allocated rows: 1440 Used rows: 1440 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_ped_eprs_h.C b/StarDb/emc/cal/org_ped_eprs_h.C index 7f00f7e6ba7..8931783a3e6 100644 --- a/StarDb/emc/cal/org_ped_eprs_h.C +++ b/StarDb/emc/cal/org_ped_eprs_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_ped_eprs_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_slp_bemc.C b/StarDb/emc/cal/org_slp_bemc.C index 2745b4a329a..fe1800625f0 100644 --- a/StarDb/emc/cal/org_slp_bemc.C +++ b/StarDb/emc/cal/org_slp_bemc.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_adcslope_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bemc Allocated rows: 4800 Used rows: 4800 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_slp_bemc_h.C b/StarDb/emc/cal/org_slp_bemc_h.C index 8b15b7d7dc3..55514b0bf76 100644 --- a/StarDb/emc/cal/org_slp_bemc_h.C +++ b/StarDb/emc/cal/org_slp_bemc_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bemc_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_slp_bprs.C b/StarDb/emc/cal/org_slp_bprs.C index 236cea7e4f5..9f412d5dcc5 100644 --- a/StarDb/emc/cal/org_slp_bprs.C +++ b/StarDb/emc/cal/org_slp_bprs.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_adcslope_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bprs Allocated rows: 4800 Used rows: 4800 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_slp_bprs_h.C b/StarDb/emc/cal/org_slp_bprs_h.C index 4bde731335f..e26ee89ab6b 100644 --- a/StarDb/emc/cal/org_slp_bprs_h.C +++ b/StarDb/emc/cal/org_slp_bprs_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bprs_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_slp_bsmde.C b/StarDb/emc/cal/org_slp_bsmde.C index 783315b52b2..542c1c314a5 100644 --- a/StarDb/emc/cal/org_slp_bsmde.C +++ b/StarDb/emc/cal/org_slp_bsmde.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_adcslope_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bsmde Allocated rows: 18000 Used rows: 18000 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_slp_bsmde_h.C b/StarDb/emc/cal/org_slp_bsmde_h.C index 4efe97fc287..d4c00bf9ac0 100644 --- a/StarDb/emc/cal/org_slp_bsmde_h.C +++ b/StarDb/emc/cal/org_slp_bsmde_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bsmde_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_slp_bsmdp.C b/StarDb/emc/cal/org_slp_bsmdp.C index 9ebfef3bd22..fe2067b2f71 100644 --- a/StarDb/emc/cal/org_slp_bsmdp.C +++ b/StarDb/emc/cal/org_slp_bsmdp.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_adcslope_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bsmdp Allocated rows: 18000 Used rows: 18000 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_slp_bsmdp_h.C b/StarDb/emc/cal/org_slp_bsmdp_h.C index 6706ea62404..dd4c98faf1b 100644 --- a/StarDb/emc/cal/org_slp_bsmdp_h.C +++ b/StarDb/emc/cal/org_slp_bsmdp_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_bsmdp_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_slp_eemc.C b/StarDb/emc/cal/org_slp_eemc.C index 345c79380c9..a16a8ac7f68 100644 --- a/StarDb/emc/cal/org_slp_eemc.C +++ b/StarDb/emc/cal/org_slp_eemc.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_adcslope_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_eemc Allocated rows: 1440 Used rows: 1440 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_slp_eemc_h.C b/StarDb/emc/cal/org_slp_eemc_h.C index 375722dbffd..a4d067fc7e7 100644 --- a/StarDb/emc/cal/org_slp_eemc_h.C +++ b/StarDb/emc/cal/org_slp_eemc_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_eemc_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/cal/org_slp_eprs.C b/StarDb/emc/cal/org_slp_eprs.C index 272fa01efa3..33aacf7e54c 100644 --- a/StarDb/emc/cal/org_slp_eprs.C +++ b/StarDb/emc/cal/org_slp_eprs.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_adcslope_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_eprs Allocated rows: 1440 Used rows: 1440 Row size: 4 bytes diff --git a/StarDb/emc/cal/org_slp_eprs_h.C b/StarDb/emc/cal/org_slp_eprs_h.C index a4c81f56886..4fcf5c11fcb 100644 --- a/StarDb/emc/cal/org_slp_eprs_h.C +++ b/StarDb/emc/cal/org_slp_eprs_h.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_calib_header_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/cal/org_slp_eprs_h Allocated rows: 1 Used rows: 1 Row size: 24 bytes diff --git a/StarDb/emc/ems/control_toadc.C b/StarDb/emc/ems/control_toadc.C index 08e3646ac5e..d8ee067e924 100644 --- a/StarDb/emc/ems/control_toadc.C +++ b/StarDb/emc/ems/control_toadc.C @@ -1,3 +1,5 @@ +#include "tables/St_control_toadc_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ems/control_toadc Allocated rows: 1 Used rows: 1 Row size: 224 bytes diff --git a/StarDb/emc/ems/ems_control.C b/StarDb/emc/ems/ems_control.C index acb7c6bc515..1eb4020ccb0 100644 --- a/StarDb/emc/ems/ems_control.C +++ b/StarDb/emc/ems/ems_control.C @@ -1,3 +1,5 @@ +#include "tables/St_ems_control_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ems/ems_control Allocated rows: 1 Used rows: 1 Row size: 340 bytes diff --git a/StarDb/emc/jet/emc_egrid_par.C b/StarDb/emc/jet/emc_egrid_par.C index ce88173e4ac..b034dacd8b5 100644 --- a/StarDb/emc/jet/emc_egrid_par.C +++ b/StarDb/emc/jet/emc_egrid_par.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_egrid_par_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/jet/emc_egrid_par Allocated rows: 1 Used rows: 1 Row size: 16 bytes diff --git a/StarDb/emc/jet/emc_jetpar.C b/StarDb/emc/jet/emc_jetpar.C index ca5aec2271e..aa156ee496a 100644 --- a/StarDb/emc/jet/emc_jetpar.C +++ b/StarDb/emc/jet/emc_jetpar.C @@ -1,3 +1,5 @@ +#include "tables/St_emc_jetpar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/jet/emc_jetpar Allocated rows: 1 Used rows: 1 Row size: 76 bytes diff --git a/StarDb/emc/simulator/Simulator.C b/StarDb/emc/simulator/Simulator.C index 5d97512ec49..00e0acc70b6 100644 --- a/StarDb/emc/simulator/Simulator.C +++ b/StarDb/emc/simulator/Simulator.C @@ -1,3 +1,5 @@ +#include "tables/St_controlEmcPmtSimulator_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Simulator Allocated rows: 4 Used rows: 4 Row size: 32 bytes diff --git a/StarDb/emc/simulator/controlEmcSimulatorMaker.C b/StarDb/emc/simulator/controlEmcSimulatorMaker.C index 79d5b0044aa..81292c2270f 100644 --- a/StarDb/emc/simulator/controlEmcSimulatorMaker.C +++ b/StarDb/emc/simulator/controlEmcSimulatorMaker.C @@ -1,3 +1,5 @@ +#include "tables/St_controlEmcSimulatorMaker_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // controlEmcSimulatorMaker Allocated rows: 1 Used rows: 1 Row size: 10 bytes diff --git a/StarDb/ftpc/ftpcClusterPars.C b/StarDb/ftpc/ftpcClusterPars.C index b8eae2bb8fc..a580633e8c7 100644 --- a/StarDb/ftpc/ftpcClusterPars.C +++ b/StarDb/ftpc/ftpcClusterPars.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcClusterPars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcClusterPars Allocated rows: 1 Used rows: 1 Row size: 156 bytes diff --git a/StarDb/ftpc/ftpcFastSimGas.C b/StarDb/ftpc/ftpcFastSimGas.C index 110c12a3797..9f073fb2306 100644 --- a/StarDb/ftpc/ftpcFastSimGas.C +++ b/StarDb/ftpc/ftpcFastSimGas.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcFastSimGas_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcFastSimGas Allocated rows: 1 Used rows: 1 Row size: 100 bytes diff --git a/StarDb/ftpc/ftpcFastSimPars.C b/StarDb/ftpc/ftpcFastSimPars.C index 5b8c18c84e1..f337cb8393d 100644 --- a/StarDb/ftpc/ftpcFastSimPars.C +++ b/StarDb/ftpc/ftpcFastSimPars.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcFastSimPars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcFastSimPars Allocated rows: 1 Used rows: 1 Row size: 44 bytes diff --git a/StarDb/ftpc/ftpcSlowSimGas.C b/StarDb/ftpc/ftpcSlowSimGas.C index 0094a5ffcd8..709f7e2ca95 100644 --- a/StarDb/ftpc/ftpcSlowSimGas.C +++ b/StarDb/ftpc/ftpcSlowSimGas.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcSlowSimGas_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcSlowSimGas Allocated rows: 132 Used rows: 132 Row size: 24 bytes diff --git a/StarDb/ftpc/ftpcSlowSimPars.C b/StarDb/ftpc/ftpcSlowSimPars.C index a6bdc61ca3d..98a2e5301e9 100644 --- a/StarDb/ftpc/ftpcSlowSimPars.C +++ b/StarDb/ftpc/ftpcSlowSimPars.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcSlowSimPars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcSlowSimPars Allocated rows: 1 Used rows: 1 Row size: 44 bytes diff --git a/StarDb/ftpc/ftpcTrackingPars.C b/StarDb/ftpc/ftpcTrackingPars.C index dfe94b13127..b0782530ebd 100644 --- a/StarDb/ftpc/ftpcTrackingPars.C +++ b/StarDb/ftpc/ftpcTrackingPars.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcTrackingPars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcTrackingPars Allocated rows: 1 Used rows: 1 Row size: ??? bytes diff --git a/StarDb/ftpc/ftpcdEdxPars.C b/StarDb/ftpc/ftpcdEdxPars.C index 2aa79a373dd..71b26b57900 100644 --- a/StarDb/ftpc/ftpcdEdxPars.C +++ b/StarDb/ftpc/ftpcdEdxPars.C @@ -1,3 +1,5 @@ +#include "tables/St_ftpcdEdxPars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ftpcdEdxPars Allocated rows: 1 Used rows: 1 Row size: 40 bytes diff --git a/StarDb/global/vertices/ev0par2.19960101.000000.C b/StarDb/global/vertices/ev0par2.19960101.000000.C index 9a578a3289b..81f225cbedb 100644 --- a/StarDb/global/vertices/ev0par2.19960101.000000.C +++ b/StarDb/global/vertices/ev0par2.19960101.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_ev0_ev0par2_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // ev0par2 Allocated rows: 6 Used rows: 6 Row size: 32 bytes diff --git a/StarDb/global/vertices/ev0par2.20011201.000000.C b/StarDb/global/vertices/ev0par2.20011201.000000.C index a8461f29af5..20164153111 100644 --- a/StarDb/global/vertices/ev0par2.20011201.000000.C +++ b/StarDb/global/vertices/ev0par2.20011201.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_ev0_ev0par2_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // ev0par2 Allocated rows: 6 Used rows: 6 Row size: 32 bytes diff --git a/StarDb/global/vertices/ev0par2.20011201.000100.C b/StarDb/global/vertices/ev0par2.20011201.000100.C index e6289122ccb..3bcb9741fff 100644 --- a/StarDb/global/vertices/ev0par2.20011201.000100.C +++ b/StarDb/global/vertices/ev0par2.20011201.000100.C @@ -1,3 +1,5 @@ +#include "tables/St_ev0_ev0par2_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // ev0par2 Allocated rows: 6 Used rows: 6 Row size: 32 bytes diff --git a/StarDb/global/vertices/ev0par2.20020201.000000.C b/StarDb/global/vertices/ev0par2.20020201.000000.C index 9a578a3289b..81f225cbedb 100644 --- a/StarDb/global/vertices/ev0par2.20020201.000000.C +++ b/StarDb/global/vertices/ev0par2.20020201.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_ev0_ev0par2_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // ev0par2 Allocated rows: 6 Used rows: 6 Row size: 32 bytes diff --git a/StarDb/global/vertices/ev0par2.20021115.000000.C b/StarDb/global/vertices/ev0par2.20021115.000000.C index a8461f29af5..20164153111 100644 --- a/StarDb/global/vertices/ev0par2.20021115.000000.C +++ b/StarDb/global/vertices/ev0par2.20021115.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_ev0_ev0par2_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // ev0par2 Allocated rows: 6 Used rows: 6 Row size: 32 bytes diff --git a/StarDb/global/vertices/ev0par2.20031201.000000.C b/StarDb/global/vertices/ev0par2.20031201.000000.C index 9a578a3289b..81f225cbedb 100644 --- a/StarDb/global/vertices/ev0par2.20031201.000000.C +++ b/StarDb/global/vertices/ev0par2.20031201.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_ev0_ev0par2_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // ev0par2 Allocated rows: 6 Used rows: 6 Row size: 32 bytes diff --git a/StarDb/global/vertices/ev0par2.20040325.023200.C b/StarDb/global/vertices/ev0par2.20040325.023200.C index fa6c8c7d3d4..4bac7253104 100644 --- a/StarDb/global/vertices/ev0par2.20040325.023200.C +++ b/StarDb/global/vertices/ev0par2.20040325.023200.C @@ -1,3 +1,5 @@ +#include "tables/St_ev0_ev0par2_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // ev0par2 Allocated rows: 6 Used rows: 6 Row size: 32 bytes diff --git a/StarDb/global/vertices/ev0par2.20050324.150000.C b/StarDb/global/vertices/ev0par2.20050324.150000.C index a8461f29af5..20164153111 100644 --- a/StarDb/global/vertices/ev0par2.20050324.150000.C +++ b/StarDb/global/vertices/ev0par2.20050324.150000.C @@ -1,3 +1,5 @@ +#include "tables/St_ev0_ev0par2_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // ev0par2 Allocated rows: 6 Used rows: 6 Row size: 32 bytes diff --git a/StarDb/global/vertices/ev0par2.20070301.000000.C b/StarDb/global/vertices/ev0par2.20070301.000000.C index 9a578a3289b..81f225cbedb 100644 --- a/StarDb/global/vertices/ev0par2.20070301.000000.C +++ b/StarDb/global/vertices/ev0par2.20070301.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_ev0_ev0par2_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // ev0par2 Allocated rows: 6 Used rows: 6 Row size: 32 bytes diff --git a/StarDb/global/vertices/ev0par2.20071125.000000.C b/StarDb/global/vertices/ev0par2.20071125.000000.C index a8461f29af5..20164153111 100644 --- a/StarDb/global/vertices/ev0par2.20071125.000000.C +++ b/StarDb/global/vertices/ev0par2.20071125.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_ev0_ev0par2_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // ev0par2 Allocated rows: 6 Used rows: 6 Row size: 32 bytes diff --git a/StarDb/global/vertices/exipar.19960101.000000.C b/StarDb/global/vertices/exipar.19960101.000000.C index 8b60a89c32f..179743949a7 100644 --- a/StarDb/global/vertices/exipar.19960101.000000.C +++ b/StarDb/global/vertices/exipar.19960101.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_exi_exipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // exipar Allocated rows: 3 Used rows: 3 Row size: 32 bytes diff --git a/StarDb/global/vertices/exipar.20011201.000000.C b/StarDb/global/vertices/exipar.20011201.000000.C index de5de42a9cf..a53654a9a0f 100644 --- a/StarDb/global/vertices/exipar.20011201.000000.C +++ b/StarDb/global/vertices/exipar.20011201.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_exi_exipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // exipar Allocated rows: 3 Used rows: 3 Row size: 32 bytes diff --git a/StarDb/global/vertices/exipar.20011201.000100.C b/StarDb/global/vertices/exipar.20011201.000100.C index cac44858097..cbbe5ceef79 100644 --- a/StarDb/global/vertices/exipar.20011201.000100.C +++ b/StarDb/global/vertices/exipar.20011201.000100.C @@ -1,3 +1,5 @@ +#include "tables/St_exi_exipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // exipar Allocated rows: 3 Used rows: 3 Row size: 32 bytes diff --git a/StarDb/global/vertices/exipar.20020201.000000.C b/StarDb/global/vertices/exipar.20020201.000000.C index 8b60a89c32f..179743949a7 100644 --- a/StarDb/global/vertices/exipar.20020201.000000.C +++ b/StarDb/global/vertices/exipar.20020201.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_exi_exipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // exipar Allocated rows: 3 Used rows: 3 Row size: 32 bytes diff --git a/StarDb/global/vertices/exipar.20021115.000000.C b/StarDb/global/vertices/exipar.20021115.000000.C index de5de42a9cf..a53654a9a0f 100644 --- a/StarDb/global/vertices/exipar.20021115.000000.C +++ b/StarDb/global/vertices/exipar.20021115.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_exi_exipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // exipar Allocated rows: 3 Used rows: 3 Row size: 32 bytes diff --git a/StarDb/global/vertices/exipar.20031201.000000.C b/StarDb/global/vertices/exipar.20031201.000000.C index 8b60a89c32f..179743949a7 100644 --- a/StarDb/global/vertices/exipar.20031201.000000.C +++ b/StarDb/global/vertices/exipar.20031201.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_exi_exipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // exipar Allocated rows: 3 Used rows: 3 Row size: 32 bytes diff --git a/StarDb/global/vertices/exipar.20040325.023200.C b/StarDb/global/vertices/exipar.20040325.023200.C index b347936a050..d0c17fad45a 100644 --- a/StarDb/global/vertices/exipar.20040325.023200.C +++ b/StarDb/global/vertices/exipar.20040325.023200.C @@ -1,3 +1,5 @@ +#include "tables/St_exi_exipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // exipar Allocated rows: 3 Used rows: 3 Row size: 32 bytes diff --git a/StarDb/global/vertices/exipar.20050324.150000.C b/StarDb/global/vertices/exipar.20050324.150000.C index de5de42a9cf..a53654a9a0f 100644 --- a/StarDb/global/vertices/exipar.20050324.150000.C +++ b/StarDb/global/vertices/exipar.20050324.150000.C @@ -1,3 +1,5 @@ +#include "tables/St_exi_exipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // exipar Allocated rows: 3 Used rows: 3 Row size: 32 bytes diff --git a/StarDb/global/vertices/exipar.20070301.000000.C b/StarDb/global/vertices/exipar.20070301.000000.C index 8b60a89c32f..179743949a7 100644 --- a/StarDb/global/vertices/exipar.20070301.000000.C +++ b/StarDb/global/vertices/exipar.20070301.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_exi_exipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // exipar Allocated rows: 3 Used rows: 3 Row size: 32 bytes diff --git a/StarDb/global/vertices/exipar.20071125.000000.C b/StarDb/global/vertices/exipar.20071125.000000.C index de5de42a9cf..a53654a9a0f 100644 --- a/StarDb/global/vertices/exipar.20071125.000000.C +++ b/StarDb/global/vertices/exipar.20071125.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_exi_exipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // exipar Allocated rows: 3 Used rows: 3 Row size: 32 bytes diff --git a/StarDb/global/vertices/stk_vtx.C b/StarDb/global/vertices/stk_vtx.C index 016feed97ff..c97df7c13e4 100644 --- a/StarDb/global/vertices/stk_vtx.C +++ b/StarDb/global/vertices/stk_vtx.C @@ -1,3 +1,5 @@ +#include "tables/St_stk_vtx_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/vertices/stk_vtx Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/global/vertices/stk_vtx_direct.C b/StarDb/global/vertices/stk_vtx_direct.C index 66ab6d4e10d..9b0e6f30384 100644 --- a/StarDb/global/vertices/stk_vtx_direct.C +++ b/StarDb/global/vertices/stk_vtx_direct.C @@ -1,3 +1,5 @@ +#include "tables/St_stk_vtx_direct_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/vertices/stk_vtx_direct Allocated rows: 1 Used rows: 1 Row size: 16 bytes diff --git a/StarDb/mwc/mwcpars/cal.C b/StarDb/mwc/mwcpars/cal.C index 20a527e93c1..21cdb07abae 100644 --- a/StarDb/mwc/mwcpars/cal.C +++ b/StarDb/mwc/mwcpars/cal.C @@ -1,3 +1,5 @@ +#include "tables/St_mwc_cal_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/mwcpars/cal Allocated rows: 384 Used rows: 384 Row size: 12 bytes diff --git a/StarDb/mwc/mwcpars/geom.C b/StarDb/mwc/mwcpars/geom.C index ea2b197b4ca..cfbc13880b8 100644 --- a/StarDb/mwc/mwcpars/geom.C +++ b/StarDb/mwc/mwcpars/geom.C @@ -1,3 +1,5 @@ +#include "tables/St_mwc_geo_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/mwcpars/geom Allocated rows: 1 Used rows: 1 Row size: 28 bytes diff --git a/StarDb/mwc/mwcpars/mpar.C b/StarDb/mwc/mwcpars/mpar.C index c7c1b0ce567..caeadf4b151 100644 --- a/StarDb/mwc/mwcpars/mpar.C +++ b/StarDb/mwc/mwcpars/mpar.C @@ -1,3 +1,5 @@ +#include "tables/St_mwc_mpar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/mwcpars/mpar Allocated rows: 1 Used rows: 1 Row size: 32 bytes diff --git a/StarDb/svt/sgrpars/pix_info.C b/StarDb/svt/sgrpars/pix_info.C index a03fda85729..baf2fcc1e32 100644 --- a/StarDb/svt/sgrpars/pix_info.C +++ b/StarDb/svt/sgrpars/pix_info.C @@ -1,3 +1,5 @@ +#include "tables/St_sgr_pixmap_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/sgrpars/pix_info Allocated rows: 4 Used rows: 4 Row size: 28 bytes diff --git a/StarDb/svt/sprpars/sprpar.C b/StarDb/svt/sprpars/sprpar.C index 0871bb1a8e9..76bd295711d 100644 --- a/StarDb/svt/sprpars/sprpar.C +++ b/StarDb/svt/sprpars/sprpar.C @@ -1,3 +1,5 @@ +#include "tables/St_spr_sprpar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/sprpars/sprpar Allocated rows: 1 Used rows: 1 Row size: 8 bytes diff --git a/StarDb/svt/srspars/srs_activea.C b/StarDb/svt/srspars/srs_activea.C index d9351ebdb1b..f17f450ad9b 100644 --- a/StarDb/svt/srspars/srs_activea.C +++ b/StarDb/svt/srspars/srs_activea.C @@ -1,3 +1,5 @@ +#include "tables/St_srs_activea_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/srspars/srs_activea Allocated rows: 4 Used rows: 4 Row size: 44 bytes diff --git a/StarDb/svt/srspars/srs_srspar.C b/StarDb/svt/srspars/srs_srspar.C index 07d85b1d831..a9687f59793 100644 --- a/StarDb/svt/srspars/srs_srspar.C +++ b/StarDb/svt/srspars/srs_srspar.C @@ -1,3 +1,5 @@ +#include "tables/St_srs_srspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/srspars/srs_srspar Allocated rows: 1 Used rows: 1 Row size: 84 bytes diff --git a/StarDb/svt/ssd/sce_ctrl.C b/StarDb/svt/ssd/sce_ctrl.C deleted file mode 100644 index 10f8208e7e7..00000000000 --- a/StarDb/svt/ssd/sce_ctrl.C +++ /dev/null @@ -1,36 +0,0 @@ -TDataSet *CreateTable() { -// ----------------------------------------------------------------- -// sce_ctrl Allocated rows: 1 Used rows: 1 Row size: 84 bytes -// Table: sce_ctrl_st[0]--> sce_ctrl_st[0] -// ==================================================================== -// ------ Test whether this table share library was loaded ------ - if (!gROOT->GetClass("St_sce_ctrl")) return 0; -sce_ctrl_st row; -St_sce_ctrl *tableSet = new St_sce_ctrl("sce_ctrl",1); -// -memset(&row,0,tableSet->GetRowSize()); - row.TrueClusterP = 1; // nbre of true cluster; - row.GhostClusterP = 1; // nbre of ghost cluster; - row.LostClusterP = 1; // nbre of lost cluster; - row.TrueClusterN = 1; // nbre of true cluster; - row.GhostClusterN = 1; // nbre of ghost cluster; - row.LostClusterN = 1; // nbre of lost cluster; - row.TrueSpt11 = 1; // nbre of true space point from 1-1 case; - row.GhostSpt11 = 1; // nbre of ghost ; - row.LostSpt11 = 1; // nbre of lost ; - row.TrueSpt12 = 1; // nbre of true space point from 1-2 case; - row.GhostSpt12 = 1; // nbre of ghost ; - row.LostSpt12 = 1; // nbre of lost ; - row.TrueSpt22 = 1; // nbre of true space point from 2-2 case; - row.GhostSpt22 = 1; // nbre of ghost ; - row.LostSpt22 = 1; // nbre of lost ; - row.TrueSpt23 = 1; // nbre of true space point from 2-3 case; - row.GhostSpt23 = 1; // nbre of ghost ; - row.LostSpt23 = 1; // nbre of lost ; - row.TrueSpt33 = 1; // nbre of true space point from 3-3 case; - row.GhostSpt33 = 1; // nbre of ghost ; - row.LostSpt33 = 1; // nbre of lost ; -tableSet->AddAt(&row,0); -// ----------------- end of code --------------- - return (TDataSet *)tableSet; -} diff --git a/StarDb/svt/ssd/scf_ctrl.C b/StarDb/svt/ssd/scf_ctrl.C deleted file mode 100644 index eaccdb5046d..00000000000 --- a/StarDb/svt/ssd/scf_ctrl.C +++ /dev/null @@ -1,17 +0,0 @@ -TDataSet *CreateTable() { -// ----------------------------------------------------------------- -// scf_ctrl Allocated rows: 1 Used rows: 1 Row size: 8 bytes -// Table: scf_ctrl_st[0]--> scf_ctrl_st[0] -// ==================================================================== -// ------ Test whether this table share library was loaded ------ - if (!gROOT->GetClass("St_scf_ctrl")) return 0; -scf_ctrl_st row; -St_scf_ctrl *tableSet = new St_scf_ctrl("scf_ctrl",1); -// -memset(&row,0,tableSet->GetRowSize()); - row.high_cut = 5; // high cut for central strip ; - row.testTolerance = 0.2; // set to 20% ; -tableSet->AddAt(&row,0); -// ----------------- end of code --------------- - return (TDataSet *)tableSet; -} diff --git a/StarDb/svt/ssd/scm_ctrl.C b/StarDb/svt/ssd/scm_ctrl.C deleted file mode 100644 index ffea9730300..00000000000 --- a/StarDb/svt/ssd/scm_ctrl.C +++ /dev/null @@ -1,19 +0,0 @@ -TDataSet *CreateTable() { -// ----------------------------------------------------------------- -// scm_ctrl Allocated rows: 1 Used rows: 1 Row size: 16 bytes -// Table: scm_ctrl_st[0]--> scm_ctrl_st[0] -// ==================================================================== -// ------ Test whether this table share library was loaded ------ - if (!gROOT->GetClass("St_scm_ctrl")) return 0; -scm_ctrl_st row; -St_scm_ctrl *tableSet = new St_scm_ctrl("scm_ctrl",1); -// -memset(&row,0,tableSet->GetRowSize()); - row.clusterTreat = 13; // max number of cluster in a matched ; - row.AdcTolerance = 0.2; // set to 20% ; - row.matchMean = 0; // matching mean ; - row.matchSigma = 8; // matching sigma ; -tableSet->AddAt(&row,0); -// ----------------- end of code --------------- - return (TDataSet *)tableSet; -} diff --git a/StarDb/svt/ssd/sdm_calib_par.C b/StarDb/svt/ssd/sdm_calib_par.C index 624ae459d43..609c12f5c12 100644 --- a/StarDb/svt/ssd/sdm_calib_par.C +++ b/StarDb/svt/ssd/sdm_calib_par.C @@ -1,3 +1,5 @@ +#include "tables/St_sdm_calib_par_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // sdm_calib_par Allocated rows: 1 Used rows: 1 Row size: 52 bytes diff --git a/StarDb/svt/ssd/sdm_condition_par.C b/StarDb/svt/ssd/sdm_condition_par.C index 10f714abf6c..eb29c71d82d 100644 --- a/StarDb/svt/ssd/sdm_condition_par.C +++ b/StarDb/svt/ssd/sdm_condition_par.C @@ -1,3 +1,5 @@ +#include "tables/St_sdm_condition_par_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // sdm_condition_par Allocated rows: 1 Used rows: 1 Row size: 96 bytes diff --git a/StarDb/svt/ssd/sdm_geom_par.C b/StarDb/svt/ssd/sdm_geom_par.C index b151b18d4f7..8e488ff6463 100644 --- a/StarDb/svt/ssd/sdm_geom_par.C +++ b/StarDb/svt/ssd/sdm_geom_par.C @@ -1,3 +1,5 @@ +#include "tables/St_sdm_geom_par_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // sdm_geom_par Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/svt/ssd/sls_ctrl.C b/StarDb/svt/ssd/sls_ctrl.C deleted file mode 100644 index 10f813e05a8..00000000000 --- a/StarDb/svt/ssd/sls_ctrl.C +++ /dev/null @@ -1,28 +0,0 @@ -TDataSet *CreateTable() { -// ----------------------------------------------------------------- -// sls_ctrl Allocated rows: 1 Used rows: 1 Row size: 80 bytes -// Table: sls_ctrl_st[0]--> sls_ctrl_st[0] -// ==================================================================== -// ------ Test whether this table share library was loaded ------ - if (!gROOT->GetClass("St_sls_ctrl")) return 0; -sls_ctrl_st row; -St_sls_ctrl *tableSet = new St_sls_ctrl("sls_ctrl",1); -// -memset(&row,0,tableSet->GetRowSize()); - row.NElectronInAMip = 22500; // in electron unit; - row.ADCDynamic = 20; // in mip unit; - row.A128Dynamic = 12; // in mip unit; - row.NBitEncoding = 10; // number od adc bit for encoding; - row.NStripInACluster = 4; // ; - row.PairCreationEnergy = 3.6e-09; // energy to create a e+e-pair(GeV); - row.ParDiffP = 0.00123; // ; - row.ParDiffN = 0.00094; // ; - row.ParIndRightP = 0.021; // ; - row.ParIndRightN = 0.026; // ; - row.ParIndLeftP = 0.013; // ; - row.ParIndLeftN = 0.01; // ; - row.DAQCutValue = 3; // in "sigma unit"; -tableSet->AddAt(&row,0); -// ----------------- end of code --------------- - return (TDataSet *)tableSet; -} diff --git a/StarDb/svt/stkpars/stk_filler.C b/StarDb/svt/stkpars/stk_filler.C index 6eb04b3b631..5dffe7bed30 100644 --- a/StarDb/svt/stkpars/stk_filler.C +++ b/StarDb/svt/stkpars/stk_filler.C @@ -1,3 +1,5 @@ +#include "tables/St_stk_filler_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/stkpars/stk_filler Allocated rows: 1 Used rows: 1 Row size: 240 bytes diff --git a/StarDb/svt/svgpars/config.C b/StarDb/svt/svgpars/config.C index d783288dffd..b0ffb780482 100644 --- a/StarDb/svt/svgpars/config.C +++ b/StarDb/svt/svgpars/config.C @@ -1,3 +1,5 @@ +#include "tables/St_svg_config_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/svgpars/config Allocated rows: 1 Used rows: 1 Row size: 1168 bytes diff --git a/StarDb/svt/svgpars/geom.C b/StarDb/svt/svgpars/geom.C index 5eafa14a849..a9f64ebf220 100644 --- a/StarDb/svt/svgpars/geom.C +++ b/StarDb/svt/svgpars/geom.C @@ -1,3 +1,5 @@ +#include "tables/St_svg_geom_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/svgpars/geom Allocated rows: 536 Used rows: 536 Row size: 68 bytes diff --git a/StarDb/svt/svgpars/geomy1l.C b/StarDb/svt/svgpars/geomy1l.C index 15cc75f6e1f..ba62860b489 100644 --- a/StarDb/svt/svgpars/geomy1l.C +++ b/StarDb/svt/svgpars/geomy1l.C @@ -1,3 +1,5 @@ +#include "tables/St_svg_geom_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/svgpars/geom Allocated rows: 7 Used rows: 7 diff --git a/StarDb/svt/svgpars/shape.C b/StarDb/svt/svgpars/shape.C index ed1b4753e07..3bb315837fe 100644 --- a/StarDb/svt/svgpars/shape.C +++ b/StarDb/svt/svgpars/shape.C @@ -1,3 +1,5 @@ +#include "tables/St_svg_shape_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/svgpars/shape Allocated rows: 2 Used rows: 2 Row size: 88 bytes diff --git a/StarDb/tpc/fmtpars/fmtpar.C b/StarDb/tpc/fmtpars/fmtpar.C index 1468efb47cb..48fd8185881 100644 --- a/StarDb/tpc/fmtpars/fmtpar.C +++ b/StarDb/tpc/fmtpars/fmtpar.C @@ -1,3 +1,5 @@ +#include "tables/St_tfc_fmtpar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/fmtpars/fmtpar Allocated rows: 1 Used rows: 1 Row size: 88 bytes diff --git a/StarDb/tpc/tclpars/tclpar.C b/StarDb/tpc/tclpars/tclpar.C index a093b52c99d..cb35f54f826 100644 --- a/StarDb/tpc/tclpars/tclpar.C +++ b/StarDb/tpc/tclpars/tclpar.C @@ -1,3 +1,5 @@ +#include "tables/St_tcl_tclpar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tclpars/tclpar Allocated rows: 1 Used rows: 1 Row size: 48 bytes diff --git a/StarDb/tpc/tclpars/type.C b/StarDb/tpc/tclpars/type.C index 47c0c7c5af8..7f3761b63d4 100644 --- a/StarDb/tpc/tclpars/type.C +++ b/StarDb/tpc/tclpars/type.C @@ -1,3 +1,5 @@ +#include "tables/St_tcl_tpc_index_type_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tclpars/type Allocated rows: 1 Used rows: 1 Row size: 28 bytes diff --git a/StarDb/tpc/tfspars/tfs_fsctrl.C b/StarDb/tpc/tfspars/tfs_fsctrl.C index 61ce364cc4d..040b37f6289 100644 --- a/StarDb/tpc/tfspars/tfs_fsctrl.C +++ b/StarDb/tpc/tfspars/tfs_fsctrl.C @@ -1,3 +1,5 @@ +#include "tables/St_tfs_fsctrl_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tfspars/tfs_fsctrl Allocated rows: 1 Used rows: 1 Row size: 32 bytes diff --git a/StarDb/tpc/tfspars/tfs_fspar.C b/StarDb/tpc/tfspars/tfs_fspar.C index 1f6df12bd8c..a8a8140baa0 100644 --- a/StarDb/tpc/tfspars/tfs_fspar.C +++ b/StarDb/tpc/tfspars/tfs_fspar.C @@ -1,3 +1,5 @@ +#include "tables/St_tfs_fspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tfspars/tfs_fspar Allocated rows: 1 Used rows: 1 Row size: 160 bytes diff --git a/StarDb/tpc/tidpars/tdeparm.C b/StarDb/tpc/tidpars/tdeparm.C index d6d49c1fefb..ccaf0a1621b 100644 --- a/StarDb/tpc/tidpars/tdeparm.C +++ b/StarDb/tpc/tidpars/tdeparm.C @@ -1,3 +1,5 @@ +#include "tables/St_tdeparm_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tidpars/tdeparm Allocated rows: 1 Used rows: 1 Row size: 60 bytes diff --git a/StarDb/tpc/tidpars/tpipar.C b/StarDb/tpc/tidpars/tpipar.C index 7ad6f89975c..7dd2456dcfe 100644 --- a/StarDb/tpc/tidpars/tpipar.C +++ b/StarDb/tpc/tidpars/tpipar.C @@ -1,3 +1,5 @@ +#include "tables/St_tpipar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tidpars/tpipar Allocated rows: 1 Used rows: 1 Row size: 132 bytes diff --git a/StarDb/tpc/tptpars/tpt_pars.20000217.000000.C b/StarDb/tpc/tptpars/tpt_pars.20000217.000000.C index 59c8849f0c9..7bd7c34ef8e 100644 --- a/StarDb/tpc/tptpars/tpt_pars.20000217.000000.C +++ b/StarDb/tpc/tptpars/tpt_pars.20000217.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_tpt_pars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes diff --git a/StarDb/tpc/tptpars/tpt_pars.20000301.000005.C b/StarDb/tpc/tptpars/tpt_pars.20000301.000005.C index 59c8849f0c9..7bd7c34ef8e 100644 --- a/StarDb/tpc/tptpars/tpt_pars.20000301.000005.C +++ b/StarDb/tpc/tptpars/tpt_pars.20000301.000005.C @@ -1,3 +1,5 @@ +#include "tables/St_tpt_pars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes diff --git a/StarDb/tpc/tptpars/tpt_pars.er99.C b/StarDb/tpc/tptpars/tpt_pars.er99.C index a312ba5843a..4797a523692 100644 --- a/StarDb/tpc/tptpars/tpt_pars.er99.C +++ b/StarDb/tpc/tptpars/tpt_pars.er99.C @@ -1,3 +1,5 @@ +#include "tables/St_tpt_pars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes diff --git a/StarDb/tpc/tptpars/tpt_pars.sd97.C b/StarDb/tpc/tptpars/tpt_pars.sd97.C index 702f81de730..e454bf2b3dd 100644 --- a/StarDb/tpc/tptpars/tpt_pars.sd97.C +++ b/StarDb/tpc/tptpars/tpt_pars.sd97.C @@ -1,3 +1,5 @@ +#include "tables/St_tpt_pars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes diff --git a/StarDb/tpc/tptpars/tpt_pars.year_1a.C b/StarDb/tpc/tptpars/tpt_pars.year_1a.C index feabdc5ac4c..70259f5b52e 100644 --- a/StarDb/tpc/tptpars/tpt_pars.year_1a.C +++ b/StarDb/tpc/tptpars/tpt_pars.year_1a.C @@ -1,3 +1,5 @@ +#include "tables/St_tpt_pars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes diff --git a/StarDb/tpc/tptpars/tpt_pars.year_1c.C b/StarDb/tpc/tptpars/tpt_pars.year_1c.C index feabdc5ac4c..70259f5b52e 100644 --- a/StarDb/tpc/tptpars/tpt_pars.year_1c.C +++ b/StarDb/tpc/tptpars/tpt_pars.year_1c.C @@ -1,3 +1,5 @@ +#include "tables/St_tpt_pars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes diff --git a/StarDb/tpc/tptpars/tpt_pars.year_1h.C b/StarDb/tpc/tptpars/tpt_pars.year_1h.C index feabdc5ac4c..70259f5b52e 100644 --- a/StarDb/tpc/tptpars/tpt_pars.year_1h.C +++ b/StarDb/tpc/tptpars/tpt_pars.year_1h.C @@ -1,3 +1,5 @@ +#include "tables/St_tpt_pars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes diff --git a/StarDb/tpc/tptpars/tpt_pars.year_2a.C b/StarDb/tpc/tptpars/tpt_pars.year_2a.C index feabdc5ac4c..70259f5b52e 100644 --- a/StarDb/tpc/tptpars/tpt_pars.year_2a.C +++ b/StarDb/tpc/tptpars/tpt_pars.year_2a.C @@ -1,3 +1,5 @@ +#include "tables/St_tpt_pars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_pars Allocated rows: 2 Used rows: 2 Row size: 160 bytes diff --git a/StarDb/tpc/tptpars/tpt_spars.C b/StarDb/tpc/tptpars/tpt_spars.C index 188180e7254..f599386e8ce 100644 --- a/StarDb/tpc/tptpars/tpt_spars.C +++ b/StarDb/tpc/tptpars/tpt_spars.C @@ -1,3 +1,5 @@ +#include "tables/St_tpt_spars_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tptpars/tpt_spars Allocated rows: 1 Used rows: 1 Row size: 216 bytes diff --git a/StarDb/tpc/tsspars/tsspar.19991216.000000.C b/StarDb/tpc/tsspars/tsspar.19991216.000000.C index a0e78312efd..96c6ea6c4ff 100644 --- a/StarDb/tpc/tsspars/tsspar.19991216.000000.C +++ b/StarDb/tpc/tsspars/tsspar.19991216.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_tss_tsspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes diff --git a/StarDb/tpc/tsspars/tsspar.19991217.000000.C b/StarDb/tpc/tsspars/tsspar.19991217.000000.C index a0e78312efd..96c6ea6c4ff 100644 --- a/StarDb/tpc/tsspars/tsspar.19991217.000000.C +++ b/StarDb/tpc/tsspars/tsspar.19991217.000000.C @@ -1,3 +1,5 @@ +#include "tables/St_tss_tsspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes diff --git a/StarDb/tpc/tsspars/tsspar.er99.C b/StarDb/tpc/tsspars/tsspar.er99.C index c68b15563ca..449ad5ea5a9 100644 --- a/StarDb/tpc/tsspars/tsspar.er99.C +++ b/StarDb/tpc/tsspars/tsspar.er99.C @@ -1,3 +1,5 @@ +#include "tables/St_tss_tsspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes diff --git a/StarDb/tpc/tsspars/tsspar.es99.C b/StarDb/tpc/tsspars/tsspar.es99.C index c68b15563ca..449ad5ea5a9 100644 --- a/StarDb/tpc/tsspars/tsspar.es99.C +++ b/StarDb/tpc/tsspars/tsspar.es99.C @@ -1,3 +1,5 @@ +#include "tables/St_tss_tsspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes diff --git a/StarDb/tpc/tsspars/tsspar.sd97.C b/StarDb/tpc/tsspars/tsspar.sd97.C index 6653282ea37..85eac65f160 100644 --- a/StarDb/tpc/tsspars/tsspar.sd97.C +++ b/StarDb/tpc/tsspars/tsspar.sd97.C @@ -1,3 +1,5 @@ +#include "tables/St_tss_tsspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes diff --git a/StarDb/tpc/tsspars/tsspar.y2018.C b/StarDb/tpc/tsspars/tsspar.y2018.C index d6370d8e0f8..5dee2357d38 100644 --- a/StarDb/tpc/tsspars/tsspar.y2018.C +++ b/StarDb/tpc/tsspars/tsspar.y2018.C @@ -1,3 +1,5 @@ +#include "tables/St_tss_tsspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes diff --git a/StarDb/tpc/tsspars/tsspar.y2019.C b/StarDb/tpc/tsspars/tsspar.y2019.C index a0e78312efd..96c6ea6c4ff 100644 --- a/StarDb/tpc/tsspars/tsspar.y2019.C +++ b/StarDb/tpc/tsspars/tsspar.y2019.C @@ -1,3 +1,5 @@ +#include "tables/St_tss_tsspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes diff --git a/StarDb/tpc/tsspars/tsspar.year_1a.C b/StarDb/tpc/tsspars/tsspar.year_1a.C index d6370d8e0f8..5dee2357d38 100644 --- a/StarDb/tpc/tsspars/tsspar.year_1a.C +++ b/StarDb/tpc/tsspars/tsspar.year_1a.C @@ -1,3 +1,5 @@ +#include "tables/St_tss_tsspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes diff --git a/StarDb/tpc/tsspars/tsspar.year_1c.C b/StarDb/tpc/tsspars/tsspar.year_1c.C index d6370d8e0f8..5dee2357d38 100644 --- a/StarDb/tpc/tsspars/tsspar.year_1c.C +++ b/StarDb/tpc/tsspars/tsspar.year_1c.C @@ -1,3 +1,5 @@ +#include "tables/St_tss_tsspar_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/tsspars/tsspar Allocated rows: 1 Used rows: 1 Row size: 240 bytes diff --git a/StarDb/tpc/ttepars/tte_control.C b/StarDb/tpc/ttepars/tte_control.C index de4ac38fa45..f2151333ae0 100644 --- a/StarDb/tpc/ttepars/tte_control.C +++ b/StarDb/tpc/ttepars/tte_control.C @@ -1,3 +1,5 @@ +#include "tables/St_tte_control_Table.h" + TDataSet *CreateTable() { // ----------------------------------------------------------------- // Top/ttepars/tte_control Allocated rows: 1 Used rows: 1 Row size: 12 bytes