| 186 |
|
|
| 187 |
Bool_t RUN; |
Bool_t RUN; |
| 188 |
|
|
| 189 |
|
Bool_t ISGP; //GP simulation |
| 190 |
|
|
| 191 |
|
|
| 192 |
Int_t SELLI; //trees of selected events (there is a selection list) |
Int_t SELLI; //trees of selected events (there is a selection list) |
| 193 |
|
|
| 194 |
void Initialize(); |
void Initialize(); |
| 230 |
|
|
| 231 |
void CreateCloneTrees0(TChain *fChain, TFile* file); |
void CreateCloneTrees0(TChain *fChain, TFile* file); |
| 232 |
void CreateCloneTrees(TFile* file); |
void CreateCloneTrees(TFile* file); |
| 233 |
|
void CreateCloneTrees(){CreateCloneTrees(NULL);}; |
| 234 |
void FillCloneTrees(); |
void FillCloneTrees(); |
| 235 |
TTree *GetCloneTree(TString); |
TTree *GetCloneTree(TString); |
| 236 |
void WriteCloneTrees(); |
void WriteCloneTrees(); |
| 241 |
// Int_t GetEntry(Int_t); |
// Int_t GetEntry(Int_t); |
| 242 |
Int_t GetEntry(Long64_t); |
Int_t GetEntry(Long64_t); |
| 243 |
Int_t GetYodaEntry(); |
Int_t GetYodaEntry(); |
| 244 |
|
|
| 245 |
|
Long64_t GetEntries(){return pam_tree->GetEntries();}; |
| 246 |
TChain* GetPamTree(){return pam_tree;}; |
TChain* GetPamTree(){return pam_tree;}; |
| 247 |
TChain* GetRunTree(){return run_tree;}; |
TChain* GetRunTree(){return run_tree;}; |
| 248 |
TTree* GetYodaTree(); |
TTree* GetYodaTree(); |
| 255 |
void SetDBHost(TString str){host=str;}; |
void SetDBHost(TString str){host=str;}; |
| 256 |
void SetDBUser(TString str){user=str;}; |
void SetDBUser(TString str){user=str;}; |
| 257 |
void SetDBPsw(TString str){psw=str;}; |
void SetDBPsw(TString str){psw=str;}; |
| 258 |
|
TSQLServer* GetSQLServer(){return dbc;}; |
| 259 |
|
Bool_t SetDBConnection(); |
| 260 |
|
|
| 261 |
// ======================================================== |
// ======================================================== |
| 262 |
// methods needed to retrieve subdetector general variables |
// methods needed to retrieve subdetector general variables |
| 263 |
// ======================================================== |
// ======================================================== |
| 264 |
void* GetPointerTo(const char*); |
void* GetPointerTo(const char*); |
| 265 |
EventHeader *GetEventHeader() { return h0_obj; }; |
EventHeader *GetEventHeader() { return h0_obj; }; |
| 266 |
TrkLevel0 *GetTrkLevel0() { return trk0_obj; }; |
|
| 267 |
CaloLevel0 *GetCaloLevel0() { return calo0_obj; }; |
/* TrkLevel0 *GetTrkLevel0() { return trk0_obj; }; */ |
| 268 |
|
/* CaloLevel0 *GetCaloLevel0() { return calo0_obj; }; */ |
| 269 |
|
TrkLevel0 *GetTrkLevel0(); |
| 270 |
|
CaloLevel0 *GetCaloLevel0(); |
| 271 |
|
|
| 272 |
|
|
| 273 |
TrkLevel1 *GetTrkLevel1() { return trk1_obj; }; |
TrkLevel1 *GetTrkLevel1() { return trk1_obj; }; |
| 274 |
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |
| 339 |
|
|
| 340 |
Bool_t IsRUN(){return RUN;}; |
Bool_t IsRUN(){return RUN;}; |
| 341 |
|
|
| 342 |
|
Bool_t IsGood(); |
| 343 |
|
|
| 344 |
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) |
| 345 |
|
|
| 346 |
|
Bool_t IsGP(){return ISGP;}; |
| 347 |
|
|
| 348 |
|
void SetGP(Bool_t tt){ISGP=tt;}; |
| 349 |
|
|
| 350 |
|
|
| 351 |
ClassDef(PamLevel2,1); |
ClassDef(PamLevel2,1); |
| 352 |
}; |
}; |
| 353 |
|
|