/[PAMELA software]/YodaProfiler/inc/PamelaDBOperations.h
ViewVC logotype

Diff of /YodaProfiler/inc/PamelaDBOperations.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.9 by mocchiut, Tue Oct 31 15:36:03 2006 UTC revision 1.16 by mocchiut, Wed Sep 5 15:34:46 2007 UTC
# Line 57  class PamelaDBOperations { Line 57  class PamelaDBOperations {
57      UInt_t id;      UInt_t id;
58      UInt_t idroot;      UInt_t idroot;
59      UInt_t pktfirst;      UInt_t pktfirst;
60      ULong64_t obtfirst;      UInt_t obtfirst;
61      ULong64_t upperobt;      UInt_t ppktfirst;
62      UInt_t upperpkt;      UInt_t pobtfirst;
63        Long64_t upperobt;
64        Long64_t upperpkt;
65      UInt_t upperentry;      UInt_t upperentry;
66      Int_t rtev;      Int_t rtev;
67      Int_t rhev;      Int_t rhev;
# Line 83  class PamelaDBOperations { Line 85  class PamelaDBOperations {
85      TString tlefilename;      TString tlefilename;
86                    
87      // flag to control profiler actions      // flag to control profiler actions
88        Bool_t STATIC;
89      Bool_t INSERT_RAW;      Bool_t INSERT_RAW;
90      Bool_t INSERT_ROOT;      Bool_t INSERT_ROOT;
91      Bool_t VALIDATE;      Bool_t VALIDATE;
92      Bool_t NOFRAG;      Bool_t NOFRAG;
93        Bool_t AUTOBOOT;
94            
95      TDatime *clean_time;      TDatime *clean_time;
96            
# Line 160  class PamelaDBOperations { Line 164  class PamelaDBOperations {
164      Bool_t IsDebug(){return(debug);};      Bool_t IsDebug(){return(debug);};
165      Bool_t IsRunAlreadyInserted();      Bool_t IsRunAlreadyInserted();
166      Bool_t IsRunConsistent(Bool_t mishead, Bool_t mistrail, UInt_t &firstev, UInt_t &lastev);      Bool_t IsRunConsistent(Bool_t mishead, Bool_t mistrail, UInt_t &firstev, UInt_t &lastev);
167        Bool_t AutoBoot(){return(AUTOBOOT);};
168      //      //
169      Bool_t MissingTRK_CALIB(UInt_t t1,UInt_t t2);      Bool_t MissingTRK_CALIB(UInt_t t1,UInt_t t2);
170      //      //
171      UInt_t PKT(UInt_t pkt_num);      Long64_t PKT(UInt_t pkt_num);
172      //      //
173      ULong64_t OBT(UInt_t obt);      Long64_t OBT(UInt_t obt);
174      //      //
175      UInt_t AssignRunID();      UInt_t AssignRunID();
176    
# Line 175  class PamelaDBOperations { Line 180  class PamelaDBOperations {
180    
181   public:   public:
182      //      //
183      PamelaDBOperations(TString host, TString user, TString password, TString filerawname, TString filerootname, UInt_t boot, UInt_t tsync, UInt_t obt0, Bool_t debug, TString tlefilename); // constructor      PamelaDBOperations(TString host, TString user, TString password, TString filerawname, TString filerootname, UInt_t boot, UInt_t tsync, UInt_t obt0, Bool_t debug, TString tlefilename,UInt_t dwinput, Bool_t staticp, Bool_t gpamela); // constructor
184      //      //
185      void Close(); // destructor      void Close(); // destructor
186      //      //
# Line 184  class PamelaDBOperations { Line 189  class PamelaDBOperations {
189      //      //
190      void SetConnection(TString host, TString user, TString password);      void SetConnection(TString host, TString user, TString password);
191      void SetBOOTnumber(UInt_t boot);      void SetBOOTnumber(UInt_t boot);
192        void SetBOOTnumber(UInt_t boot, Bool_t gpamela);
193      void SetRawName(TString str);      void SetRawName(TString str);
194      void SetRootName(TString str);      void SetRootName(TString str);
195      void SetDebugFlag(Bool_t debug);      void SetDebugFlag(Bool_t debug);
196      void SetID_RAW(UInt_t idr);      void SetID_RAW(UInt_t idr);
197      void SetID_ROOT(UInt_t idr);      void SetID_ROOT(UInt_t idr);
198      void SetTsync(UInt_t ts);      void SetTsync(UInt_t ts);
199        void SetTsync(UInt_t ts, Bool_t gpamela);
200      void SetObt0(UInt_t ts);      void SetObt0(UInt_t ts);
201      void SetCommonGLRUN(UInt_t absth, UInt_t abstt);      void SetCommonGLRUN(UInt_t absth, UInt_t abstt);
202      void SetNOBOOT(Bool_t noboot);      void SetNOBOOT(Bool_t noboot);
203      void SetOlderThan(Long64_t oldthan);      void SetOlderThan(Long64_t oldthan);
204      void SetTLEPath(TString str);      void SetTLEPath(TString str);
205      void SetOrbitNo();      void SetOrbitNo(UInt_t dwinput);
206      void SetNoFrag(Bool_t nf);      void SetNoFrag(Bool_t nf);
207        void SetAutoBoot(Bool_t nf);
208      //      //
209      Bool_t SetID_RAW();      Bool_t SetID_RAW();
210      //      //
# Line 216  class PamelaDBOperations { Line 224  class PamelaDBOperations {
224      const PacketType* GetPacketType(const char* type);      const PacketType* GetPacketType(const char* type);
225      //      //
226      TString GetRawFile(){return((TString)gSystem->BaseName(filerawname.Data()));};      TString GetRawFile(){return((TString)gSystem->BaseName(filerawname.Data()));};
     TString GetRawPath(){return((TString)gSystem->DirName(filerawname.Data())+'/');};  
227      TString GetRootFile(){return((TString)gSystem->BaseName(filerootname.Data()));};      TString GetRootFile(){return((TString)gSystem->BaseName(filerootname.Data()));};
     TString GetRootPath(){return((TString)gSystem->DirName(filerootname.Data())+'/');};  
228      TString GetRootName(){return(filerootname);};      TString GetRootName(){return(filerootname);};
229      TString GetRawName(){return(filerawname);};      TString GetRawName(){return(filerawname);};
230        TString GetRawPath();
231        TString GetRootPath();
232                    
233      const char*  GetCleanTime(){return clean_time->AsSQLString();};      const char*  GetCleanTime(){return clean_time->AsSQLString();};
234      //      //
# Line 254  class PamelaDBOperations { Line 262  class PamelaDBOperations {
262    
263      // Functions for TLE      // Functions for TLE
264      Int_t populateTLE();      Int_t populateTLE();
265    
266        UInt_t ValidateTrkCalib( CalibTrk1Event* calibtrk , EventHeader* h);
267        UInt_t ValidateTrkCalib( CalibTrk2Event* calibtrk , EventHeader* h){return ValidateTrkCalib((CalibTrk1Event*)calibtrk,h); };
268    
269        UInt_t Check();
270                    
271  };  };
272  #endif /* PAMELA_DB_OPERATIONS_H */  #endif /* PAMELA_DB_OPERATIONS_H */

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.16

  ViewVC Help
Powered by ViewVC 1.1.23