| 15 |
#include <TrkLevel1.h> |
#include <TrkLevel1.h> |
| 16 |
#include <TrkLevel2.h> |
#include <TrkLevel2.h> |
| 17 |
#include <TrkHough.h> |
#include <TrkHough.h> |
| 18 |
|
#include <CaloLevel0.h> |
| 19 |
#include <CaloLevel1.h> |
#include <CaloLevel1.h> |
| 20 |
#include <CaloLevel2.h> |
#include <CaloLevel2.h> |
| 21 |
#include <ToFLevel2.h> |
#include <ToFLevel2.h> |
| 31 |
#include <TTree.h> |
#include <TTree.h> |
| 32 |
#include <TFriendElement.h> |
#include <TFriendElement.h> |
| 33 |
#include <TChain.h> |
#include <TChain.h> |
| 34 |
|
#include <TChainElement.h> |
| 35 |
#include <TFile.h> |
#include <TFile.h> |
| 36 |
#include <TList.h> |
#include <TList.h> |
| 37 |
#include <TKey.h> |
#include <TKey.h> |
| 39 |
#include <TSystemDirectory.h> |
#include <TSystemDirectory.h> |
| 40 |
#include <TSQLServer.h> |
#include <TSQLServer.h> |
| 41 |
|
|
| 42 |
|
#include <stdlib.h> |
| 43 |
#include <iostream> |
#include <iostream> |
| 44 |
|
#include <iomanip> |
| 45 |
|
using namespace std; |
| 46 |
|
|
| 47 |
#define NCLONES 10 |
#define NCLONES 10 |
| 48 |
|
|
| 100 |
// ------------------------------ |
// ------------------------------ |
| 101 |
// variables to retrieve run info |
// variables to retrieve run info |
| 102 |
// ------------------------------ |
// ------------------------------ |
| 103 |
Int_t irun; //current run entry, relative to the TChain |
// Int_t irun; //current run entry, relative to the TChain |
| 104 |
ULong64_t runfirstentry; //first entry of run, relative to the TChain |
Long64_t irun; //current run entry, relative to the TChain |
| 105 |
ULong64_t runlastentry; //last entry of run, relative to the TChain |
// ULong64_t runfirstentry; //first entry of run, relative to the TChain |
| 106 |
Int_t irunentry; //position of current entry, relative to the run |
// ULong64_t runlastentry; //last entry of run, relative to the TChain |
| 107 |
|
// Int_t irunentry; //position of current entry, relative to the run |
| 108 |
|
Long64_t runfirstentry; //first entry of run, relative to the TChain |
| 109 |
|
Long64_t runlastentry; //last entry of run, relative to the TChain |
| 110 |
|
Long64_t irunentry; //position of current entry, relative to the run |
| 111 |
TChain* run_tree; |
TChain* run_tree; |
| 112 |
TTree* run_tree_clone; |
TTree* run_tree_clone; |
| 113 |
TChain* sel_tree; |
TChain* sel_tree; |
| 114 |
TTree* sel_tree_clone; |
TTree* sel_tree_clone; |
| 115 |
|
|
| 116 |
|
// ------------------------------------------- |
| 117 |
|
// variables to store total live and dead time |
| 118 |
|
// ------------------------------------------- |
| 119 |
|
ULong64_t totdltime[3];// 0=live 1=dead 2=n.events |
| 120 |
|
|
| 121 |
// --------------------------------- |
// --------------------------------- |
| 122 |
// variables to retrieve level0 info |
// variables to retrieve level0 info |
| 123 |
// --------------------------------- |
// --------------------------------- |
| 124 |
TFile* l0_file; |
TFile* l0_file; |
| 125 |
TTree* l0_tree; |
TTree* l0_tree; |
| 126 |
Int_t iroot; |
Int_t iroot; |
| 127 |
|
Int_t prevshift; // to remember if any shift is needed to synchronize l0 and l2 data instead of calculating any time |
| 128 |
// -------------------------------------------- |
// -------------------------------------------- |
| 129 |
// variables to store Level0 info (if required) |
// variables to store Level0 info (if required) |
| 130 |
// -------------------------------------------- |
// -------------------------------------------- |
| 131 |
EventHeader* h0_obj; |
EventHeader* h0_obj; |
| 132 |
TrkLevel0* trk0_obj; |
TrkLevel0* trk0_obj; |
| 133 |
|
CaloLevel0* calo0_obj; |
| 134 |
|
|
| 135 |
// --------------------------- |
// --------------------------- |
| 136 |
// variables to connect the DB |
// variables to connect the DB |
| 145 |
// --------------------------------------------- |
// --------------------------------------------- |
| 146 |
TChain* pam_tree; |
TChain* pam_tree; |
| 147 |
TTree* pam_tree_clone[NCLONES]; |
TTree* pam_tree_clone[NCLONES]; |
| 148 |
|
|
| 149 |
// -------------------------------------------- |
// -------------------------------------------- |
| 150 |
// variables to store Level0 info (if required) |
// variables to store Level0 info (if required) |
| 151 |
// -------------------------------------------- |
// -------------------------------------------- |
| 169 |
TClonesArray *tsorted; |
TClonesArray *tsorted; |
| 170 |
TClonesArray *timage; |
TClonesArray *timage; |
| 171 |
PamTrack *track; //store the last required |
PamTrack *track; //store the last required |
| 172 |
|
TString howtosort; |
| 173 |
|
Float_t sortthr; |
| 174 |
|
|
| 175 |
// ----- |
// ----- |
| 176 |
// flags |
// flags |
| 195 |
|
|
| 196 |
Bool_t RUN; |
Bool_t RUN; |
| 197 |
|
|
| 198 |
|
Bool_t ISGP; //GP simulation |
| 199 |
|
|
| 200 |
|
|
| 201 |
Int_t SELLI; //trees of selected events (there is a selection list) |
Int_t SELLI; //trees of selected events (there is a selection list) |
| 202 |
|
|
| 203 |
|
void Initialize(); |
| 204 |
|
|
| 205 |
|
|
| 206 |
public: |
public: |
| 207 |
|
|
| 208 |
|
PamLevel2(TString ddir,TString list,TString detlist); |
| 209 |
|
PamLevel2(TString ddir,TString list); |
| 210 |
PamLevel2(); |
PamLevel2(); |
| 211 |
~PamLevel2(){Delete();}; |
~PamLevel2(){Delete();}; |
| 212 |
|
|
| 213 |
void Clear(); |
void Clear(); |
| 214 |
|
void Reset(); |
| 215 |
void Delete(); |
void Delete(); |
| 216 |
|
|
| 217 |
|
|
| 222 |
void GetWhichTrees(TFile*); |
void GetWhichTrees(TFile*); |
| 223 |
|
|
| 224 |
TTree* GetPamTree(TFile*,TString); |
TTree* GetPamTree(TFile*,TString); |
| 225 |
TTree* GetPamTree(TFile* f){return GetPamTree(f,"");}; |
TTree* GetPamTree(TFile* f){return GetPamTree(f,"");}; |
| 226 |
|
|
| 227 |
TList* GetListOfLevel2Files(TString, TString); |
TList* GetListOfLevel2Files(TString, TString); |
| 228 |
Bool_t CheckLevel2File(TString); |
Bool_t CheckLevel2File(TString); |
| 229 |
TChain* GetPamTree(TList*,TString); |
TChain* GetPamTree(TList*,TString); |
| 230 |
TChain* GetPamTree(TString ddir,TString list,TString detlist){ return GetPamTree(GetListOfLevel2Files(ddir,list),detlist); }; |
TChain* GetPamTree(TString ddir,TString list,TString detlist){ return GetPamTree(GetListOfLevel2Files(ddir,list),detlist); }; |
| 231 |
TChain* GetPamTree(TString ddir,TString list){ return GetPamTree(GetListOfLevel2Files(ddir,list),""); }; |
TChain* GetPamTree(TString ddir,TString list){ return GetPamTree(GetListOfLevel2Files(ddir,list),""); }; |
| 232 |
|
TChain* AddFriend(TString); |
| 233 |
|
|
| 234 |
TTree* GetRunTree(TFile*); |
TTree* GetRunTree(TFile*); |
| 235 |
TChain* GetRunTree(TList*); |
TChain* GetRunTree(TList*); |
| 236 |
TChain* GetRunTree(TString ddir,TString list){ return GetRunTree(GetListOfLevel2Files(ddir,list)); }; |
TChain* GetRunTree(TString ddir,TString list){ return GetRunTree(GetListOfLevel2Files(ddir,list)); }; |
| 237 |
Bool_t UpdateRunInfo(TTree *,ULong64_t); |
Bool_t UpdateRunInfo(TTree *,Long64_t); |
| 238 |
Bool_t UpdateRunInfo(TChain *,ULong64_t); |
Bool_t UpdateRunInfo(TChain *,Long64_t); |
| 239 |
|
Bool_t UpdateRunInfo(Long64_t iev);//{ return UpdateRunInfo(run_tree,iev); }; |
| 240 |
|
|
| 241 |
void CreateCloneTrees0(TChain *fChain, TFile* file); |
void CreateCloneTrees0(TChain *fChain, TFile* file); |
| 242 |
void CreateCloneTrees(TFile* file); |
void CreateCloneTrees(TFile* file); |
| 243 |
|
void CreateCloneTrees(){CreateCloneTrees(NULL);}; |
| 244 |
void FillCloneTrees(); |
void FillCloneTrees(); |
| 245 |
TTree *GetCloneTree(TString); |
TTree *GetCloneTree(TString); |
| 246 |
void WriteCloneTrees(); |
void WriteCloneTrees(); |
| 248 |
void SetBranchAddress(TTree *); |
void SetBranchAddress(TTree *); |
| 249 |
void SetBranchAddress(TChain *); |
void SetBranchAddress(TChain *); |
| 250 |
|
|
| 251 |
Int_t GetEntry(Int_t); |
// Int_t GetEntry(Int_t); |
| 252 |
|
Int_t GetEntry(Long64_t); |
| 253 |
Int_t GetYodaEntry(); |
Int_t GetYodaEntry(); |
| 254 |
|
|
| 255 |
|
Long64_t GetEntries(){return pam_tree->GetEntries();}; |
| 256 |
TChain* GetPamTree(){return pam_tree;}; |
TChain* GetPamTree(){return pam_tree;}; |
| 257 |
TChain* GetRunTree(){return run_tree;}; |
TChain* GetRunTree(){return run_tree;}; |
| 258 |
TTree* GetYodaTree(); |
TTree* GetYodaTree(); |
| 259 |
|
|
| 260 |
|
TFile* GetYodaFile(){return l0_file;}; // can be useful to know the name of level0 file we are using or similar things |
| 261 |
|
|
| 262 |
// ============= |
// ============= |
| 263 |
// DB connection |
// DB connection |
| 264 |
// ============= |
// ============= |
| 265 |
void SetDBHost(TString str){host=str;}; |
void SetDBHost(TString str){host=str;}; |
| 266 |
void SetDBUser(TString str){user=str;}; |
void SetDBUser(TString str){user=str;}; |
| 267 |
void SetDBPsw(TString str){psw=str;}; |
void SetDBPsw(TString str){psw=str;}; |
| 268 |
|
TSQLServer* GetSQLServer(){return dbc;}; |
| 269 |
|
Bool_t SetDBConnection(); |
| 270 |
|
|
| 271 |
// ======================================================== |
// ======================================================== |
| 272 |
// methods needed to retrieve subdetector general variables |
// methods needed to retrieve subdetector general variables |
| 273 |
// ======================================================== |
// ======================================================== |
| 274 |
void* GetPointerTo(const char*); |
void* GetPointerTo(const char*); |
| 275 |
TrkLevel0 *GetTrkLevel0() { return trk0_obj; }; |
EventHeader *GetEventHeader() { return h0_obj; }; |
| 276 |
|
|
| 277 |
|
/* TrkLevel0 *GetTrkLevel0() { return trk0_obj; }; */ |
| 278 |
|
/* CaloLevel0 *GetCaloLevel0() { return calo0_obj; }; */ |
| 279 |
|
TrkLevel0 *GetTrkLevel0(); |
| 280 |
|
CaloLevel0 *GetCaloLevel0(); |
| 281 |
|
|
| 282 |
|
|
| 283 |
TrkLevel1 *GetTrkLevel1() { return trk1_obj; }; |
TrkLevel1 *GetTrkLevel1() { return trk1_obj; }; |
| 284 |
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |
| 311 |
PamTrack* GetStoredTrack(Int_t); |
PamTrack* GetStoredTrack(Int_t); |
| 312 |
// |
// |
| 313 |
void SortTracks(TString); //assign value to variable sorted_tracks |
void SortTracks(TString); //assign value to variable sorted_tracks |
| 314 |
|
void SortTracks(); //assign value to variable sorted_tracks |
| 315 |
// TRefArray* GetTracks(); //return sorted_tracks |
// TRefArray* GetTracks(); //return sorted_tracks |
| 316 |
TClonesArray* GetTracks(); //return sorted_tracks |
TClonesArray* GetTracks(); //return sorted_tracks |
| 317 |
PamTrack* GetTrack(int); |
PamTrack* GetTrack(int); |
| 318 |
PamTrack* GetTrackImage(int); |
PamTrack* GetTrackImage(int); |
| 319 |
|
void SetSortingMethod(TString how){ howtosort = how; return;}; |
| 320 |
|
TString GetSortingMethod(){return howtosort;}; |
| 321 |
|
void SetNucleiSortingThreshold(Float_t nucleithr){ sortthr = nucleithr; return;}; |
| 322 |
|
Float_t GetNucleiSortingThreshold(){ return sortthr;}; |
| 323 |
|
|
| 324 |
// ================================= |
// ================================= |
| 325 |
// other methods |
// other methods |
| 326 |
// ================================= |
// ================================= |
| 327 |
// Int_t ntrk(){ return trk2_obj->TrkLevel2::ntrk(); }; |
// Int_t ntrk(){ return trk2_obj->TrkLevel2::ntrk(); }; |
| 328 |
|
|
| 329 |
|
// ----- |
| 330 |
|
// flags methods |
| 331 |
|
// ----- |
| 332 |
|
Bool_t IsCAL2(){return CAL2;}; //level2 branch |
| 333 |
|
Bool_t IsCAL1(){return CAL1;}; //level1 branch |
| 334 |
|
Bool_t IsCAL0(){return CAL0;}; //yoda |
| 335 |
|
|
| 336 |
|
Bool_t IsTRK2(){return TRK2;}; //level2 branch |
| 337 |
|
Bool_t IsTRK1(){return TRK1;}; //level1 branch |
| 338 |
|
Bool_t IsTRKh(){return TRKh;}; //hough branch |
| 339 |
|
Bool_t IsTRK0(){return TRK0;}; //yoda |
| 340 |
|
|
| 341 |
|
Bool_t IsTOF(){return TOF;}; |
| 342 |
|
Bool_t IsTOF0(){return TOF0;}; |
| 343 |
|
|
| 344 |
|
Bool_t IsTRG(){return TRG;}; |
| 345 |
|
Bool_t IsS4(){return S4;}; |
| 346 |
|
Bool_t IsND(){return ND;}; |
| 347 |
|
Bool_t IsAC(){return AC;}; |
| 348 |
|
Bool_t IsORB(){return ORB;}; |
| 349 |
|
|
| 350 |
|
Bool_t IsRUN(){return RUN;}; |
| 351 |
|
|
| 352 |
|
Bool_t IsGood(); |
| 353 |
|
|
| 354 |
|
Int_t IsSELLI(){return SELLI;}; //trees of selected events (there is a selection list) |
| 355 |
|
|
| 356 |
|
Bool_t IsGP(){return ISGP;}; |
| 357 |
|
|
| 358 |
|
void SetGP(Bool_t tt){ISGP=tt;}; |
| 359 |
|
|
| 360 |
|
|
| 361 |
ClassDef(PamLevel2,1); |
ClassDef(PamLevel2,1); |
| 362 |
}; |
}; |