4 |
#include <iostream> |
#include <iostream> |
5 |
#include <list> |
#include <list> |
6 |
|
|
7 |
|
#include <TFile.h> |
8 |
#include <TSQLServer.h> |
#include <TSQLServer.h> |
9 |
#include <EventHeader.h> |
#include <EventHeader.h> |
10 |
#include <PscuHeader.h> |
#include <PscuHeader.h> |
58 |
UInt_t id; |
UInt_t id; |
59 |
UInt_t idroot; |
UInt_t idroot; |
60 |
UInt_t pktfirst; |
UInt_t pktfirst; |
61 |
ULong64_t obtfirst; |
UInt_t obtfirst; |
62 |
ULong64_t upperobt; |
UInt_t ppktfirst; |
63 |
UInt_t upperpkt; |
UInt_t pobtfirst; |
64 |
|
Long64_t upperobt; |
65 |
|
Long64_t upperpkt; |
66 |
UInt_t upperentry; |
UInt_t upperentry; |
67 |
Int_t rtev; |
Int_t rtev; |
68 |
Int_t rhev; |
Int_t rhev; |
86 |
TString tlefilename; |
TString tlefilename; |
87 |
|
|
88 |
// flag to control profiler actions |
// flag to control profiler actions |
89 |
|
Bool_t STATIC; |
90 |
Bool_t INSERT_RAW; |
Bool_t INSERT_RAW; |
91 |
Bool_t INSERT_ROOT; |
Bool_t INSERT_ROOT; |
92 |
Bool_t VALIDATE; |
Bool_t VALIDATE; |
93 |
|
Bool_t NOFRAG; |
94 |
|
Bool_t AUTOBOOT; |
95 |
|
|
96 |
TDatime *clean_time; |
TDatime *clean_time; |
97 |
|
|
156 |
void FillClass(Bool_t mishead, Bool_t mistrail, UInt_t firstev, UInt_t lastev); |
void FillClass(Bool_t mishead, Bool_t mistrail, UInt_t firstev, UInt_t lastev); |
157 |
void HandleTRK_CALIB(Bool_t pk1, Bool_t pk2); |
void HandleTRK_CALIB(Bool_t pk1, Bool_t pk2); |
158 |
// |
// |
159 |
|
void RemoveCALIBS(); |
160 |
|
void ValidationOFF(); |
161 |
|
void ReArrangeRUNS(); |
162 |
|
void RemoveRUNS(); |
163 |
|
void RemoveFILES(); |
164 |
|
// |
165 |
Bool_t IsDebug(){return(debug);}; |
Bool_t IsDebug(){return(debug);}; |
166 |
Bool_t IsRunAlreadyInserted(); |
Bool_t IsRunAlreadyInserted(); |
167 |
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); |
168 |
|
Bool_t AutoBoot(){return(AUTOBOOT);}; |
169 |
// |
// |
170 |
Bool_t MissingTRK_CALIB(UInt_t t1,UInt_t t2); |
Bool_t MissingTRK_CALIB(UInt_t t1,UInt_t t2); |
171 |
// |
// |
172 |
UInt_t PKT(UInt_t pkt_num); |
Long64_t PKT(UInt_t pkt_num); |
173 |
// |
// |
174 |
ULong64_t OBT(UInt_t obt); |
Long64_t OBT(UInt_t obt); |
175 |
// |
// |
176 |
UInt_t AssignRunID(); |
UInt_t AssignRunID(); |
177 |
|
|
181 |
|
|
182 |
public: |
public: |
183 |
// |
// |
184 |
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 |
185 |
// |
// |
186 |
void Close(); // destructor |
void Close(); // destructor |
187 |
// |
// |
190 |
// |
// |
191 |
void SetConnection(TString host, TString user, TString password); |
void SetConnection(TString host, TString user, TString password); |
192 |
void SetBOOTnumber(UInt_t boot); |
void SetBOOTnumber(UInt_t boot); |
193 |
|
void SetBOOTnumber(UInt_t boot, Bool_t gpamela); |
194 |
void SetRawName(TString str); |
void SetRawName(TString str); |
195 |
void SetRootName(TString str); |
void SetRootName(TString str); |
196 |
void SetDebugFlag(Bool_t debug); |
void SetDebugFlag(Bool_t debug); |
197 |
void SetID_RAW(UInt_t idr); |
void SetID_RAW(UInt_t idr); |
198 |
void SetID_ROOT(UInt_t idr); |
void SetID_ROOT(UInt_t idr); |
199 |
void SetTsync(UInt_t ts); |
void SetTsync(UInt_t ts); |
200 |
|
void SetTsync(UInt_t ts, Bool_t gpamela); |
201 |
void SetObt0(UInt_t ts); |
void SetObt0(UInt_t ts); |
202 |
void SetCommonGLRUN(UInt_t absth, UInt_t abstt); |
void SetCommonGLRUN(UInt_t absth, UInt_t abstt); |
203 |
void SetNOBOOT(Bool_t noboot); |
void SetNOBOOT(Bool_t noboot); |
204 |
void SetOlderThan(Long64_t oldthan); |
void SetOlderThan(Long64_t oldthan); |
205 |
void SetTLEPath(TString str); |
void SetTLEPath(TString str); |
206 |
void SetOrbitNo(); |
void SetOrbitNo(UInt_t dwinput); |
207 |
|
void SetNoFrag(Bool_t nf); |
208 |
|
void SetAutoBoot(Bool_t nf); |
209 |
// |
// |
210 |
Bool_t SetID_RAW(); |
Bool_t SetID_RAW(); |
211 |
// |
// |
225 |
const PacketType* GetPacketType(const char* type); |
const PacketType* GetPacketType(const char* type); |
226 |
// |
// |
227 |
TString GetRawFile(){return((TString)gSystem->BaseName(filerawname.Data()));}; |
TString GetRawFile(){return((TString)gSystem->BaseName(filerawname.Data()));}; |
|
TString GetRawPath(){return((TString)gSystem->DirName(filerawname.Data())+'/');}; |
|
228 |
TString GetRootFile(){return((TString)gSystem->BaseName(filerootname.Data()));}; |
TString GetRootFile(){return((TString)gSystem->BaseName(filerootname.Data()));}; |
|
TString GetRootPath(){return((TString)gSystem->DirName(filerootname.Data())+'/');}; |
|
229 |
TString GetRootName(){return(filerootname);}; |
TString GetRootName(){return(filerootname);}; |
230 |
TString GetRawName(){return(filerawname);}; |
TString GetRawName(){return(filerawname);}; |
231 |
|
TString GetRawPath(); |
232 |
|
TString GetRootPath(); |
233 |
|
|
234 |
const char* GetCleanTime(){return clean_time->AsSQLString();}; |
const char* GetCleanTime(){return clean_time->AsSQLString();}; |
235 |
// |
// |
236 |
// Functions |
// Functions |
237 |
// |
// |
241 |
Int_t insertPamelaGL_TIMESYNC(); |
Int_t insertPamelaGL_TIMESYNC(); |
242 |
Int_t insertPamelaRUN(); |
Int_t insertPamelaRUN(); |
243 |
Int_t insertCALO_CALIB(); |
Int_t insertCALO_CALIB(); |
244 |
|
Int_t insertCALOPULSE_CALIB(); |
245 |
Int_t insertTRK_CALIB(); |
Int_t insertTRK_CALIB(); |
246 |
Int_t insertS4_CALIB(); |
Int_t insertS4_CALIB(); |
247 |
Int_t CleanGL_RUN_FRAGMENTS(); |
Int_t CleanGL_RUN_FRAGMENTS(); |
248 |
|
Int_t CleanGL_RUN_FRAGMENTS(TString fcleanfile); |
249 |
Int_t ValidateRuns(); |
Int_t ValidateRuns(); |
250 |
|
Int_t ValidateRuns(TString valfile); |
251 |
Int_t assignVALIDATION(UInt_t ,Bool_t ); |
Int_t assignVALIDATION(UInt_t ,Bool_t ); |
252 |
|
Int_t removeFile(TString rootfilename); |
253 |
// |
// |
254 |
// void OpenFile(); |
// void OpenFile(); |
255 |
void CheckValidate(Long64_t olderthan); |
void CheckValidate(Long64_t olderthan); |
257 |
void CheckFile(); |
void CheckFile(); |
258 |
// |
// |
259 |
|
|
260 |
|
Bool_t NoFrag(){return(NOFRAG);}; |
261 |
Bool_t InsertRoot(){return(INSERT_ROOT);}; |
Bool_t InsertRoot(){return(INSERT_ROOT);}; |
262 |
Bool_t InsertRaw(){return(INSERT_RAW);}; |
Bool_t InsertRaw(){return(INSERT_RAW);}; |
263 |
Bool_t Validate(){return(VALIDATE);}; |
Bool_t Validate(){return(VALIDATE);}; |
264 |
|
|
265 |
// Functions for TLE |
// Functions for TLE |
266 |
Int_t populateTLE(); |
Int_t populateTLE(); |
267 |
|
|
268 |
|
UInt_t ValidateTrkCalib( CalibTrk1Event* calibtrk , EventHeader* h); |
269 |
|
UInt_t ValidateTrkCalib( CalibTrk2Event* calibtrk , EventHeader* h){return ValidateTrkCalib((CalibTrk1Event*)calibtrk,h); }; |
270 |
|
|
271 |
|
UInt_t Check(); |
272 |
|
|
273 |
}; |
}; |
274 |
#endif /* PAMELA_DB_OPERATIONS_H */ |
#endif /* PAMELA_DB_OPERATIONS_H */ |