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

Annotation of /YodaProfiler/inc/PamelaDBOperations.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.15 - (hide annotations) (download)
Tue Apr 17 12:06:47 2007 UTC (17 years, 7 months ago) by mocchiut
Branch: MAIN
CVS Tags: v3r04, v3r05, v3r03
Changes since 1.14: +4 -3 lines
File MIME type: text/plain
Symbolic path in DB + default installation of GL_PARAM + moved here install_GL_PARAM

1 mocchiut 1.1 #ifndef PAMELA_DB_OPERATIONS_H
2     #define PAMELA_DB_OPERATIONS_H
3    
4     #include <iostream>
5     #include <list>
6 mocchiut 1.6
7 mocchiut 1.1 #include <TSQLServer.h>
8     #include <EventHeader.h>
9     #include <PscuHeader.h>
10     #include <mcmd/McmdEvent.h>
11     #include <mcmd/McmdRecord.h>
12     #include <RunHeaderEvent.h>
13     #include <RunTrailerEvent.h>
14     #include <CalibCalPedEvent.h>
15     #include <CalibS4Event.h>
16     #include <CalibTrk1Event.h>
17     #include <CalibTrk2Event.h>
18     #include <varDump/VarDumpEvent.h>
19     #include <varDump/VarDumpRecord.h>
20     #include <physics/S4/S4Event.h>
21 mocchiut 1.6
22 mocchiut 1.1 #include <GLTables.h>
23    
24 mocchiut 1.8 #include <sgp4.h>
25 mocchiut 1.6
26 mocchiut 1.1 using namespace pamela;
27    
28     /**
29     * Collections of Pamela specific operations over a database
30     */
31     class PamelaDBOperations {
32    
33     private:
34     TSQLServer *conn;
35     TFile *file;
36     //
37     RunHeaderEvent *runh;
38     EventHeader *ehh;
39     PscuHeader *phh;
40     RunTrailerEvent *runt;
41     EventHeader *eht;
42     PscuHeader *pht;
43     //
44     GL_RUN *glrun;
45     //
46     TString filerawname;
47     TString filerootname;
48     //
49     UInt_t tsync;
50     UInt_t toffset;
51     //
52 mocchiut 1.7 // Long64_t olderthan;
53     UInt_t dworbit;
54 mocchiut 1.2 //
55 mocchiut 1.1 UInt_t BOOTNO;
56     UInt_t obt0;
57     UInt_t id;
58     UInt_t idroot;
59     UInt_t pktfirst;
60 mocchiut 1.10 UInt_t obtfirst;
61 mocchiut 1.14 UInt_t ppktfirst;
62     UInt_t pobtfirst;
63 mocchiut 1.10 Long64_t upperobt;
64     Long64_t upperpkt;
65 mocchiut 1.1 UInt_t upperentry;
66     Int_t rtev;
67     Int_t rhev;
68     //
69     // calibration variables
70     //
71     Int_t t1;
72     Int_t t2;
73     UInt_t fromtime;
74     UInt_t obt1;
75     UInt_t pkt1;
76     UInt_t obt2;
77     UInt_t pkt2;
78     UInt_t valid;
79     //
80     //
81     Bool_t NOBOOT;
82     Bool_t debug;
83 mocchiut 1.6
84     // Path to tle file
85     TString tlefilename;
86 pam-fi 1.4
87 mocchiut 1.7 // flag to control profiler actions
88 mocchiut 1.15 Bool_t STATIC;
89 mocchiut 1.7 Bool_t INSERT_RAW;
90     Bool_t INSERT_ROOT;
91     Bool_t VALIDATE;
92 mocchiut 1.9 Bool_t NOFRAG;
93 mocchiut 1.10 Bool_t AUTOBOOT;
94 mocchiut 1.7
95     TDatime *clean_time;
96    
97 mocchiut 1.1 //
98     typedef std::list<const char*> pcksList;
99     static void getPacketsNames(pcksList &pcksNames){
100     pcksNames.push_back("PhysEndRun");
101     pcksNames.push_back("CalibCalPulse1");
102     pcksNames.push_back("CalibCalPulse2");
103     pcksNames.push_back("Physics");
104     pcksNames.push_back("CalibTrkBoth");
105     pcksNames.push_back("CalibTrk1");
106     pcksNames.push_back("CalibTrk2");
107     pcksNames.push_back("CalibTof");
108     pcksNames.push_back("CalibS4");
109     pcksNames.push_back("CalibCalPed");
110     pcksNames.push_back("Calib1_Ac1");
111     pcksNames.push_back("Calib2_Ac1");
112     pcksNames.push_back("Calib1_Ac2");
113     pcksNames.push_back("Calib2_Ac2");
114     pcksNames.push_back("CalibCal");
115     pcksNames.push_back("RunHeader");
116     pcksNames.push_back("RunTrailer");
117     pcksNames.push_back("CalibHeader");
118     pcksNames.push_back("CalibTrailer");
119     pcksNames.push_back("InitHeader");
120     pcksNames.push_back("InitTrailer");
121     pcksNames.push_back("EventTrk");
122     pcksNames.push_back("Log");
123     pcksNames.push_back("VarDump");
124     pcksNames.push_back("ArrDump");
125     pcksNames.push_back("TabDump");
126     pcksNames.push_back("Tmtc");
127     pcksNames.push_back("Mcmd");
128     pcksNames.push_back("ForcedFECmd");
129     pcksNames.push_back("Ac1Init");
130     pcksNames.push_back("CalInit");
131     pcksNames.push_back("TrkInit");
132     pcksNames.push_back("TofInit");
133     pcksNames.push_back("TrgInit");
134     pcksNames.push_back("NdInit");
135     pcksNames.push_back("S4Init");
136     pcksNames.push_back("Ac2Init");
137     pcksNames.push_back("CalAlarm");
138     pcksNames.push_back("Ac1Alarm");
139     pcksNames.push_back("TrkAlarm");
140     pcksNames.push_back("TrgAlarm");
141     pcksNames.push_back("TofAlarm");
142     pcksNames.push_back("S4Alarm");
143     pcksNames.push_back("Ac2Alarm");
144     pcksNames.push_back("TsbT");
145     pcksNames.push_back("TsbB");
146     };
147     //
148     // Functions
149     //
150     void HandleRun();
151     void HandleRunFragments(Bool_t mishead, Bool_t mistrail, UInt_t firstev, UInt_t lastev);
152     void HandleMissingHoT(Bool_t mishead, Bool_t mistrail, UInt_t firstev, UInt_t lastev);
153     void HandleSuspiciousRun();
154     void FillClass();
155     void FillClass(Bool_t mishead, Bool_t mistrail, UInt_t firstev, UInt_t lastev);
156     void HandleTRK_CALIB(Bool_t pk1, Bool_t pk2);
157     //
158 mocchiut 1.9 void RemoveCALIBS();
159     void ValidationOFF();
160     void ReArrangeRUNS();
161     void RemoveRUNS();
162     void RemoveFILES();
163     //
164 mocchiut 1.1 Bool_t IsDebug(){return(debug);};
165     Bool_t IsRunAlreadyInserted();
166     Bool_t IsRunConsistent(Bool_t mishead, Bool_t mistrail, UInt_t &firstev, UInt_t &lastev);
167 mocchiut 1.10 Bool_t AutoBoot(){return(AUTOBOOT);};
168 mocchiut 1.5 //
169     Bool_t MissingTRK_CALIB(UInt_t t1,UInt_t t2);
170     //
171 mocchiut 1.10 Long64_t PKT(UInt_t pkt_num);
172 mocchiut 1.1 //
173 mocchiut 1.10 Long64_t OBT(UInt_t obt);
174 mocchiut 1.1 //
175 mocchiut 1.7 UInt_t AssignRunID();
176 mocchiut 1.1
177 mocchiut 1.6 // GL_TLE related functions
178     int insertTle(cTle*);
179     bool isTlePresent(cTle*);
180    
181 mocchiut 1.1 public:
182     //
183 mocchiut 1.15 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); // constructor
184 mocchiut 1.1 //
185     void Close(); // destructor
186     //
187     //
188     // Setters
189     //
190     void SetConnection(TString host, TString user, TString password);
191     void SetBOOTnumber(UInt_t boot);
192     void SetRawName(TString str);
193     void SetRootName(TString str);
194     void SetDebugFlag(Bool_t debug);
195     void SetID_RAW(UInt_t idr);
196     void SetID_ROOT(UInt_t idr);
197     void SetTsync(UInt_t ts);
198     void SetObt0(UInt_t ts);
199     void SetCommonGLRUN(UInt_t absth, UInt_t abstt);
200     void SetNOBOOT(Bool_t noboot);
201 mocchiut 1.2 void SetOlderThan(Long64_t oldthan);
202 mocchiut 1.6 void SetTLEPath(TString str);
203 mocchiut 1.13 void SetOrbitNo(UInt_t dwinput);
204 mocchiut 1.9 void SetNoFrag(Bool_t nf);
205 mocchiut 1.10 void SetAutoBoot(Bool_t nf);
206 mocchiut 1.1 //
207     Bool_t SetID_RAW();
208     //
209     Int_t SetUpperLimits();
210     //
211     // Getters
212     //
213     Bool_t GetNOBOOT(){return(NOBOOT);};
214     //
215     UInt_t GetID_RAW(){return(id);};
216     UInt_t GetID_ROOT(){return(idroot);};
217     UInt_t GetBOOTnumber(){return(BOOTNO);};
218     //
219     UInt_t GetAbsTime(UInt_t obt);
220     UInt_t GetTsync(){return(tsync);};
221     //
222     const PacketType* GetPacketType(const char* type);
223     //
224     TString GetRawFile(){return((TString)gSystem->BaseName(filerawname.Data()));};
225     TString GetRootFile(){return((TString)gSystem->BaseName(filerootname.Data()));};
226     TString GetRootName(){return(filerootname);};
227     TString GetRawName(){return(filerawname);};
228 mocchiut 1.15 TString GetRawPath();
229     TString GetRootPath();
230 pam-fi 1.4
231 mocchiut 1.9 const char* GetCleanTime(){return clean_time->AsSQLString();};
232 mocchiut 1.1 //
233     // Functions
234     //
235     Int_t assignBOOT_NUMBER();
236     Int_t insertPamelaRootFile();
237     Int_t insertPamelaRawFile();
238     Int_t insertPamelaGL_TIMESYNC();
239     Int_t insertPamelaRUN();
240     Int_t insertCALO_CALIB();
241     Int_t insertTRK_CALIB();
242     Int_t insertS4_CALIB();
243 mocchiut 1.2 Int_t CleanGL_RUN_FRAGMENTS();
244 mocchiut 1.9 Int_t CleanGL_RUN_FRAGMENTS(TString fcleanfile);
245 mocchiut 1.2 Int_t ValidateRuns();
246 mocchiut 1.9 Int_t ValidateRuns(TString valfile);
247 mocchiut 1.5 Int_t assignVALIDATION(UInt_t ,Bool_t );
248 mocchiut 1.9 Int_t removeFile(TString rootfilename);
249 mocchiut 1.5 //
250     // void OpenFile();
251     void CheckValidate(Long64_t olderthan);
252 pam-fi 1.4 void CheckConnection();
253 mocchiut 1.5 void CheckFile();
254 mocchiut 1.1 //
255 pam-fi 1.4
256 mocchiut 1.9 Bool_t NoFrag(){return(NOFRAG);};
257 mocchiut 1.6 Bool_t InsertRoot(){return(INSERT_ROOT);};
258     Bool_t InsertRaw(){return(INSERT_RAW);};
259     Bool_t Validate(){return(VALIDATE);};
260    
261     // Functions for TLE
262     Int_t populateTLE();
263 pam-fi 1.11
264     UInt_t ValidateTrkCalib( CalibTrk1Event* calibtrk , EventHeader* h);
265     UInt_t ValidateTrkCalib( CalibTrk2Event* calibtrk , EventHeader* h){return ValidateTrkCalib((CalibTrk1Event*)calibtrk,h); };
266 mocchiut 1.12
267     UInt_t Check();
268 pam-fi 1.4
269 mocchiut 1.1 };
270     #endif /* PAMELA_DB_OPERATIONS_H */

  ViewVC Help
Powered by ViewVC 1.1.23