| 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 |
|
|
| 62 |
TrkTrack* trk_track; |
TrkTrack* trk_track; |
| 63 |
CaloTrkVar* calo_track; |
CaloTrkVar* calo_track; |
| 64 |
ToFTrkVar* tof_track; |
ToFTrkVar* tof_track; |
| 65 |
|
Int_t pscore; |
| 66 |
|
Int_t iscore; |
| 67 |
bool candeleteobj; |
bool candeleteobj; |
| 68 |
|
|
| 69 |
// TClonesArray *Cluster; ///< clusters (if stored) |
// TClonesArray *Cluster; ///< clusters (if stored) |
| 79 |
void Clear(Option_t *option){Clear();}; |
void Clear(Option_t *option){Clear();}; |
| 80 |
void Delete(); |
void Delete(); |
| 81 |
|
|
| 82 |
|
Bool_t IsSolved(){if ((pscore-iscore)>0) return true; return false;}; |
| 83 |
|
Int_t GetScore(){return (pscore-iscore);}; |
| 84 |
|
Int_t GetPScore(){return (pscore);}; |
| 85 |
|
Int_t GetIScore(){return (iscore);}; |
| 86 |
|
void SetPScore(Int_t p){pscore=p;}; |
| 87 |
|
void SetIScore(Int_t i){iscore=i;}; |
| 88 |
|
|
| 89 |
TrkTrack* GetTrkTrack(){return trk_track;}; |
TrkTrack* GetTrkTrack(){return trk_track;}; |
| 90 |
CaloTrkVar* GetCaloTrack(){return calo_track;}; |
CaloTrkVar* GetCaloTrack(){return calo_track;}; |
| 91 |
ToFTrkVar* GetToFTrack(){return tof_track;}; |
ToFTrkVar* GetToFTrack(){return tof_track;}; |
| 108 |
// ------------------------------ |
// ------------------------------ |
| 109 |
// variables to retrieve run info |
// variables to retrieve run info |
| 110 |
// ------------------------------ |
// ------------------------------ |
| 111 |
Int_t irun; //current run entry, relative to the TChain |
// Int_t irun; //current run entry, relative to the TChain |
| 112 |
ULong64_t runfirstentry; //first entry of run, relative to the TChain |
Long64_t irun; //current run entry, relative to the TChain |
| 113 |
ULong64_t runlastentry; //last entry of run, relative to the TChain |
// ULong64_t runfirstentry; //first entry of run, relative to the TChain |
| 114 |
Int_t irunentry; //position of current entry, relative to the run |
// ULong64_t runlastentry; //last entry of run, relative to the TChain |
| 115 |
|
// Int_t irunentry; //position of current entry, relative to the run |
| 116 |
|
Long64_t runfirstentry; //first entry of run, relative to the TChain |
| 117 |
|
Long64_t runlastentry; //last entry of run, relative to the TChain |
| 118 |
|
Long64_t irunentry; //position of current entry, relative to the run |
| 119 |
TChain* run_tree; |
TChain* run_tree; |
| 120 |
TTree* run_tree_clone; |
TTree* run_tree_clone; |
| 121 |
TChain* sel_tree; |
TChain* sel_tree; |
| 122 |
TTree* sel_tree_clone; |
TTree* sel_tree_clone; |
| 123 |
|
|
| 124 |
|
// ------------------------------------------- |
| 125 |
|
// variables to store total live and dead time |
| 126 |
|
// ------------------------------------------- |
| 127 |
|
ULong64_t totdltime[3];// 0=live 1=dead 2=n.events |
| 128 |
|
|
| 129 |
// --------------------------------- |
// --------------------------------- |
| 130 |
// variables to retrieve level0 info |
// variables to retrieve level0 info |
| 131 |
// --------------------------------- |
// --------------------------------- |
| 132 |
TFile* l0_file; |
TFile* l0_file; |
| 133 |
TTree* l0_tree; |
TTree* l0_tree; |
| 134 |
Int_t iroot; |
Int_t iroot; |
| 135 |
|
Int_t prevshift; // to remember if any shift is needed to synchronize l0 and l2 data instead of calculating any time |
| 136 |
|
Int_t maxshift; // EMILIANO maximum discrepancy between L2 and L0 data (the bigger the better concering synch but the processing speed drops) default = 10 |
| 137 |
// -------------------------------------------- |
// -------------------------------------------- |
| 138 |
// variables to store Level0 info (if required) |
// variables to store Level0 info (if required) |
| 139 |
// -------------------------------------------- |
// -------------------------------------------- |
| 140 |
EventHeader* h0_obj; |
EventHeader* h0_obj; |
| 141 |
TrkLevel0* trk0_obj; |
TrkLevel0* trk0_obj; |
| 142 |
|
CaloLevel0* calo0_obj; |
| 143 |
|
|
| 144 |
// --------------------------- |
// --------------------------- |
| 145 |
// variables to connect the DB |
// variables to connect the DB |
| 154 |
// --------------------------------------------- |
// --------------------------------------------- |
| 155 |
TChain* pam_tree; |
TChain* pam_tree; |
| 156 |
TTree* pam_tree_clone[NCLONES]; |
TTree* pam_tree_clone[NCLONES]; |
| 157 |
|
|
| 158 |
// -------------------------------------------- |
// -------------------------------------------- |
| 159 |
// variables to store Level0 info (if required) |
// variables to store Level0 info (if required) |
| 160 |
// -------------------------------------------- |
// -------------------------------------------- |
| 178 |
TClonesArray *tsorted; |
TClonesArray *tsorted; |
| 179 |
TClonesArray *timage; |
TClonesArray *timage; |
| 180 |
PamTrack *track; //store the last required |
PamTrack *track; //store the last required |
| 181 |
|
TString howtosort; |
| 182 |
|
Float_t sortthr; |
| 183 |
|
|
| 184 |
// ----- |
// ----- |
| 185 |
// flags |
// flags |
| 204 |
|
|
| 205 |
Bool_t RUN; |
Bool_t RUN; |
| 206 |
|
|
| 207 |
|
Bool_t ISGP; //GP simulation |
| 208 |
|
|
| 209 |
|
|
| 210 |
Int_t SELLI; //trees of selected events (there is a selection list) |
Int_t SELLI; //trees of selected events (there is a selection list) |
| 211 |
|
|
| 212 |
|
void Initialize(); |
| 213 |
|
|
| 214 |
|
|
| 215 |
public: |
public: |
| 216 |
|
|
| 217 |
|
PamLevel2(TString ddir,TString list,TString detlist); |
| 218 |
|
PamLevel2(TString ddir,TString list); |
| 219 |
PamLevel2(); |
PamLevel2(); |
| 220 |
~PamLevel2(){Delete();}; |
~PamLevel2(){Delete();}; |
| 221 |
|
|
| 222 |
void Clear(); |
void Clear(); |
| 223 |
|
void Reset(); |
| 224 |
void Delete(); |
void Delete(); |
| 225 |
|
|
| 226 |
|
|
| 231 |
void GetWhichTrees(TFile*); |
void GetWhichTrees(TFile*); |
| 232 |
|
|
| 233 |
TTree* GetPamTree(TFile*,TString); |
TTree* GetPamTree(TFile*,TString); |
| 234 |
TTree* GetPamTree(TFile* f){return GetPamTree(f,"");}; |
TTree* GetPamTree(TFile* f){return GetPamTree(f,"");}; |
| 235 |
|
|
| 236 |
TList* GetListOfLevel2Files(TString, TString); |
TList* GetListOfLevel2Files(TString, TString); |
| 237 |
Bool_t CheckLevel2File(TString); |
Bool_t CheckLevel2File(TString); |
| 238 |
TChain* GetPamTree(TList*,TString); |
TChain* GetPamTree(TList*,TString); |
| 239 |
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); }; |
| 240 |
TChain* GetPamTree(TString ddir,TString list){ return GetPamTree(GetListOfLevel2Files(ddir,list),""); }; |
TChain* GetPamTree(TString ddir,TString list){ return GetPamTree(GetListOfLevel2Files(ddir,list),""); }; |
| 241 |
|
TChain* AddFriend(TString); |
| 242 |
|
|
| 243 |
TTree* GetRunTree(TFile*); |
TTree* GetRunTree(TFile*); |
| 244 |
TChain* GetRunTree(TList*); |
TChain* GetRunTree(TList*); |
| 245 |
TChain* GetRunTree(TString ddir,TString list){ return GetRunTree(GetListOfLevel2Files(ddir,list)); }; |
TChain* GetRunTree(TString ddir,TString list){ return GetRunTree(GetListOfLevel2Files(ddir,list)); }; |
| 246 |
Bool_t UpdateRunInfo(TTree *,ULong64_t); |
Bool_t UpdateRunInfo(Long64_t);//{ return UpdateRunInfo(run_tree,iev); }; |
| 247 |
Bool_t UpdateRunInfo(TChain *,ULong64_t); |
Bool_t UpdateRunInfo(TTree *,Long64_t); |
| 248 |
|
Bool_t UpdateRunInfo(TChain *,Long64_t); |
| 249 |
|
|
| 250 |
void CreateCloneTrees0(TChain *fChain, TFile* file); |
void CreateCloneTrees0(TChain *fChain, TFile* file); |
| 251 |
void CreateCloneTrees(TFile* file); |
void CreateCloneTrees(TFile* file); |
| 252 |
|
void CreateCloneTrees(){CreateCloneTrees(NULL);}; |
| 253 |
void FillCloneTrees(); |
void FillCloneTrees(); |
| 254 |
TTree *GetCloneTree(TString); |
TTree *GetCloneTree(TString); |
| 255 |
void WriteCloneTrees(); |
void WriteCloneTrees(); |
| 257 |
void SetBranchAddress(TTree *); |
void SetBranchAddress(TTree *); |
| 258 |
void SetBranchAddress(TChain *); |
void SetBranchAddress(TChain *); |
| 259 |
|
|
| 260 |
Int_t GetEntry(Int_t); |
// Int_t GetEntry(Int_t); |
| 261 |
|
Int_t GetEntry(Long64_t); |
| 262 |
Int_t GetYodaEntry(); |
Int_t GetYodaEntry(); |
| 263 |
|
|
| 264 |
|
void SetMaxShift(Int_t sh){ maxshift = sh; return;}; // EMILIANO method to change the maxshift variable |
| 265 |
|
|
| 266 |
|
Long64_t GetEntries(){return pam_tree->GetEntries();}; |
| 267 |
TChain* GetPamTree(){return pam_tree;}; |
TChain* GetPamTree(){return pam_tree;}; |
| 268 |
TChain* GetRunTree(){return run_tree;}; |
TChain* GetRunTree(){return run_tree;}; |
| 269 |
TTree* GetYodaTree(); |
TTree* GetYodaTree(); |
| 270 |
|
|
| 271 |
|
TFile* GetYodaFile(){return l0_file;}; // can be useful to know the name of level0 file we are using or similar things |
| 272 |
|
|
| 273 |
// ============= |
// ============= |
| 274 |
// DB connection |
// DB connection |
| 275 |
// ============= |
// ============= |
| 276 |
void SetDBHost(TString str){host=str;}; |
void SetDBHost(TString str){host=str;}; |
| 277 |
void SetDBUser(TString str){user=str;}; |
void SetDBUser(TString str){user=str;}; |
| 278 |
void SetDBPsw(TString str){psw=str;}; |
void SetDBPsw(TString str){psw=str;}; |
| 279 |
|
TSQLServer* GetSQLServer(){return dbc;}; |
| 280 |
|
Bool_t SetDBConnection(); |
| 281 |
|
|
| 282 |
// ======================================================== |
// ======================================================== |
| 283 |
// methods needed to retrieve subdetector general variables |
// methods needed to retrieve subdetector general variables |
| 284 |
// ======================================================== |
// ======================================================== |
| 285 |
void* GetPointerTo(const char*); |
void* GetPointerTo(const char*); |
| 286 |
EventHeader *GetEventHeader() { return h0_obj; }; |
EventHeader *GetEventHeader() { return h0_obj; }; |
| 287 |
TrkLevel0 *GetTrkLevel0() { return trk0_obj; }; |
|
| 288 |
|
/* TrkLevel0 *GetTrkLevel0() { return trk0_obj; }; */ |
| 289 |
|
/* CaloLevel0 *GetCaloLevel0() { return calo0_obj; }; */ |
| 290 |
|
TrkLevel0 *GetTrkLevel0(); |
| 291 |
|
CaloLevel0 *GetCaloLevel0(); |
| 292 |
|
|
| 293 |
|
|
| 294 |
TrkLevel1 *GetTrkLevel1() { return trk1_obj; }; |
TrkLevel1 *GetTrkLevel1() { return trk1_obj; }; |
| 295 |
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |
| 322 |
PamTrack* GetStoredTrack(Int_t); |
PamTrack* GetStoredTrack(Int_t); |
| 323 |
// |
// |
| 324 |
void SortTracks(TString); //assign value to variable sorted_tracks |
void SortTracks(TString); //assign value to variable sorted_tracks |
| 325 |
|
void SortTracks(); //assign value to variable sorted_tracks |
| 326 |
// TRefArray* GetTracks(); //return sorted_tracks |
// TRefArray* GetTracks(); //return sorted_tracks |
| 327 |
TClonesArray* GetTracks(); //return sorted_tracks |
TClonesArray* GetTracks(); //return sorted_tracks |
| 328 |
PamTrack* GetTrack(int); |
PamTrack* GetTrack(int); |
| 329 |
PamTrack* GetTrackImage(int); |
PamTrack* GetTrackImage(int); |
| 330 |
|
void SetSortingMethod(TString how){ howtosort = how; return;}; |
| 331 |
|
TString GetSortingMethod(){return howtosort;}; |
| 332 |
|
void SetNucleiSortingThreshold(Float_t nucleithr){ sortthr = nucleithr; return;}; |
| 333 |
|
Float_t GetNucleiSortingThreshold(){ return sortthr;}; |
| 334 |
|
|
| 335 |
// ================================= |
// ================================= |
| 336 |
// other methods |
// other methods |
| 360 |
|
|
| 361 |
Bool_t IsRUN(){return RUN;}; |
Bool_t IsRUN(){return RUN;}; |
| 362 |
|
|
| 363 |
|
Bool_t IsGood(); |
| 364 |
|
|
| 365 |
Int_t IsSELLI(){return SELLI;}; //trees of selected events (there is a selection list) |
Int_t IsSELLI(){return SELLI;}; //trees of selected events (there is a selection list) |
| 366 |
|
|
| 367 |
|
Bool_t IsGP(){return ISGP;}; |
| 368 |
|
|
| 369 |
|
void SetGP(Bool_t tt){ISGP=tt;}; |
| 370 |
|
|
| 371 |
|
|
| 372 |
ClassDef(PamLevel2,1); |
ClassDef(PamLevel2,1); |
| 373 |
}; |
}; |
| 374 |
|
|