| 9 |
|
|
| 10 |
#include <TRefArray.h> |
#include <TRefArray.h> |
| 11 |
|
|
| 12 |
|
#include <TrkStruct.h> |
| 13 |
|
#include <TrkParams.h> |
| 14 |
|
#include <TrkLevel0.h> |
| 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> |
| 24 |
#include <NDLevel2.h> |
#include <NDLevel2.h> |
| 25 |
#include <AcLevel2.h> |
#include <AcLevel2.h> |
| 26 |
#include <OrbitalInfo.h> |
#include <OrbitalInfo.h> |
|
#include <OrbitalInfo.h> |
|
| 27 |
#include <RunInfo.h> |
#include <RunInfo.h> |
| 28 |
#include <GLTables.h> |
#include <GLTables.h> |
| 29 |
|
|
| 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> |
| 38 |
#include <TSystemFile.h> |
#include <TSystemFile.h> |
| 39 |
#include <TSystemDirectory.h> |
#include <TSystemDirectory.h> |
| 40 |
|
#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 |
| 48 |
|
|
| 49 |
using namespace std; |
using namespace std; |
| 50 |
|
|
| 51 |
/** |
/** |
| 54 |
* This class inherites from TrkTrack, CaloTrkVar ecc... |
* This class inherites from TrkTrack, CaloTrkVar ecc... |
| 55 |
* |
* |
| 56 |
*/ |
*/ |
| 57 |
class PamTrack : public TrkTrack, public CaloTrkVar, public ToFTrkVar { |
//class PamTrack : public TrkTrack, public CaloTrkVar, public ToFTrkVar { |
| 58 |
|
class PamTrack : public TObject { |
| 59 |
|
|
| 60 |
private: |
private: |
| 61 |
|
|
| 63 |
CaloTrkVar* calo_track; |
CaloTrkVar* calo_track; |
| 64 |
ToFTrkVar* tof_track; |
ToFTrkVar* tof_track; |
| 65 |
|
|
| 66 |
|
bool candeleteobj; |
| 67 |
|
|
| 68 |
|
// TClonesArray *Cluster; ///< clusters (if stored) |
| 69 |
|
|
| 70 |
public: |
public: |
| 71 |
|
|
| 72 |
PamTrack(); |
PamTrack(); |
|
|
|
| 73 |
PamTrack(TrkTrack* , CaloTrkVar* , ToFTrkVar* ); |
PamTrack(TrkTrack* , CaloTrkVar* , ToFTrkVar* ); |
| 74 |
|
PamTrack(const PamTrack&); |
| 75 |
|
~PamTrack(){ Delete(); }; |
| 76 |
|
|
| 77 |
TrkTrack* GetTrkTrack(){return trk_track;}; |
void Clear(); |
| 78 |
|
void Clear(Option_t *option){Clear();}; |
| 79 |
|
void Delete(); |
| 80 |
|
|
| 81 |
|
TrkTrack* GetTrkTrack(){return trk_track;}; |
| 82 |
CaloTrkVar* GetCaloTrack(){return calo_track;}; |
CaloTrkVar* GetCaloTrack(){return calo_track;}; |
| 83 |
ToFTrkVar* GetToFTrack(){return tof_track;}; |
ToFTrkVar* GetToFTrack(){return tof_track;}; |
| 84 |
|
|
| 85 |
ClassDef(PamTrack,1); |
ClassDef(PamTrack,1); |
| 86 |
}; |
}; |
| 92 |
* This allows to solve the tracker ambiguity (that is, to choose between track images) by using also information from other detectors. |
* This allows to solve the tracker ambiguity (that is, to choose between track images) by using also information from other detectors. |
| 93 |
*/ |
*/ |
| 94 |
|
|
| 95 |
class PamLevel2 : public CaloLevel2, public CaloLevel1, public ToFLevel2, public TrkLevel2, public TrkLevel1, public TrkHough, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2, public OrbitalInfo { |
//class PamLevel2 : public CaloLevel2, public CaloLevel1, public ToFLevel2, public TrkLevel2, public TrkLevel1, public TrkHough, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2, public OrbitalInfo { |
| 96 |
|
class PamLevel2 : public TObject { |
| 97 |
|
|
| 98 |
private: |
private: |
|
public: |
|
| 99 |
|
|
| 100 |
|
// ------------------------------ |
| 101 |
|
// variables to retrieve run info |
| 102 |
|
// ------------------------------ |
| 103 |
|
// Int_t irun; //current run entry, relative to the TChain |
| 104 |
|
Long64_t irun; //current run entry, relative to the TChain |
| 105 |
|
// ULong64_t runfirstentry; //first entry of run, relative to the TChain |
| 106 |
|
// 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; |
| 112 |
|
TTree* run_tree_clone; |
| 113 |
|
TChain* sel_tree; |
| 114 |
|
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 |
| 123 |
|
// --------------------------------- |
| 124 |
|
TFile* l0_file; |
| 125 |
|
TTree* l0_tree; |
| 126 |
|
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) |
| 130 |
|
// -------------------------------------------- |
| 131 |
|
EventHeader* h0_obj; |
| 132 |
|
TrkLevel0* trk0_obj; |
| 133 |
|
CaloLevel0* calo0_obj; |
| 134 |
|
|
| 135 |
|
// --------------------------- |
| 136 |
|
// variables to connect the DB |
| 137 |
|
// --------------------------- |
| 138 |
|
TSQLServer* dbc; |
| 139 |
|
TString host; |
| 140 |
|
TString user; |
| 141 |
|
TString psw; |
| 142 |
|
|
| 143 |
|
// --------------------------------------------- |
| 144 |
|
// variables to retrieve and clone level1-2 info |
| 145 |
|
// --------------------------------------------- |
| 146 |
|
TChain* pam_tree; |
| 147 |
|
TTree* pam_tree_clone[NCLONES]; |
| 148 |
|
|
| 149 |
|
// -------------------------------------------- |
| 150 |
|
// variables to store Level0 info (if required) |
| 151 |
|
// -------------------------------------------- |
| 152 |
TrkLevel1* trk1_obj; |
TrkLevel1* trk1_obj; |
| 153 |
TrkLevel2* trk2_obj; |
TrkLevel2* trk2_obj; |
| 154 |
TrkHough* trkh_obj; |
TrkHough* trkh_obj; |
|
|
|
| 155 |
CaloLevel1* calo1_obj; |
CaloLevel1* calo1_obj; |
| 156 |
CaloLevel2* calo2_obj; |
CaloLevel2* calo2_obj; |
|
|
|
| 157 |
ToFLevel2* tof_obj; |
ToFLevel2* tof_obj; |
| 158 |
TrigLevel2* trig_obj; |
TrigLevel2* trig_obj; |
| 159 |
S4Level2* s4_obj; |
S4Level2* s4_obj; |
| 160 |
NDLevel2* nd_obj; |
NDLevel2* nd_obj; |
| 161 |
AcLevel2* ac_obj; |
AcLevel2* ac_obj; |
| 162 |
OrbitalInfo* orb_obj; |
OrbitalInfo* orb_obj; |
|
|
|
| 163 |
GL_RUN* run_obj; |
GL_RUN* run_obj; |
| 164 |
|
SoftInfo* soft_obj; // Emiliano |
|
/* TrkLevel1* trk1_clone; */ |
|
|
/* TrkLevel2* trk2_clone; */ |
|
|
/* TrkHough* trkh_clone; */ |
|
|
|
|
|
/* CaloLevel1* calo1_clone; */ |
|
|
/* CaloLevel2* calo2_clone; */ |
|
|
|
|
|
/* ToFLevel2* tof_clone; */ |
|
|
/* TrigLevel2* trig_clone; */ |
|
|
/* S4Level2* s4_clone; */ |
|
|
/* NDLevel2* nd_clone; */ |
|
|
/* AcLevel2* ac_clone; */ |
|
|
/* OrbitalInfo* orb_clone; */ |
|
|
|
|
|
/* TTree* T_clone; //tracker */ |
|
|
/* TTree* C_clone; //calo */ |
|
|
/* TTree* O_clone; //tof */ |
|
|
/* TTree* R_clone; //trigger */ |
|
|
/* TTree* S_clone; //s4 */ |
|
|
/* TTree* A_clone; //anti */ |
|
|
/* TTree* N_clone; //nd */ |
|
|
/* TTree* B_clone; //orbital */ |
|
| 165 |
|
|
| 166 |
TTree* tree_clone[8]; |
// ----------------------------------- |
| 167 |
|
// variables to sort the track |
| 168 |
TRefArray* sorted_tracks; |
// ----------------------------------- |
| 169 |
|
TClonesArray *tsorted; |
| 170 |
|
TClonesArray *timage; |
| 171 |
|
PamTrack *track; //store the last required |
| 172 |
|
TString howtosort; |
| 173 |
|
Float_t sortthr; |
| 174 |
|
|
| 175 |
|
// ----- |
| 176 |
|
// flags |
| 177 |
|
// ----- |
| 178 |
Bool_t CAL2; //level2 branch |
Bool_t CAL2; //level2 branch |
| 179 |
Bool_t CAL1; //level1 branch |
Bool_t CAL1; //level1 branch |
| 180 |
|
Bool_t CAL0; //yoda |
| 181 |
|
|
| 182 |
Bool_t TRK2; //level2 branch |
Bool_t TRK2; //level2 branch |
| 183 |
Bool_t TRK1; //level1 branch |
Bool_t TRK1; //level1 branch |
| 184 |
Bool_t TRKh; //hough branch |
Bool_t TRKh; //hough branch |
| 185 |
|
Bool_t TRK0; //yoda |
| 186 |
|
|
|
Bool_t TRG; |
|
| 187 |
Bool_t TOF; |
Bool_t TOF; |
| 188 |
|
Bool_t TOF0; |
| 189 |
|
|
| 190 |
|
Bool_t TRG; |
| 191 |
Bool_t S4; |
Bool_t S4; |
| 192 |
Bool_t ND; |
Bool_t ND; |
| 193 |
Bool_t AC; |
Bool_t AC; |
| 194 |
Bool_t ORB; |
Bool_t ORB; |
| 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) |
| 202 |
|
|
| 203 |
|
void Initialize(); |
| 204 |
|
|
| 205 |
|
|
| 206 |
|
public: |
| 207 |
|
|
| 208 |
|
PamLevel2(TString ddir,TString list,TString detlist); |
| 209 |
|
PamLevel2(TString ddir,TString list); |
| 210 |
PamLevel2(); |
PamLevel2(); |
| 211 |
~PamLevel2(); |
~PamLevel2(){Delete();}; |
| 212 |
|
|
| 213 |
void Clear(); |
void Clear(); |
| 214 |
|
void Reset(); |
| 215 |
|
void Delete(); |
| 216 |
|
|
| 217 |
/* TrkLevel1* GetTrkLevel1() { return trk1_obj; }; */ |
|
| 218 |
/* TrkLevel2* GetTrkLevel2() { return trk2_obj; }; */ |
// ============================================= |
| 219 |
/* TrkHough* GetTrkHough() { return trkh_obj; }; */ |
// methods needed to read/write Level0-1-2 trees |
| 220 |
/* CaloLevel1* GetCaloLevel1() { return calo1_obj; }; */ |
// ============================================= |
|
/* CaloLevel2* GetCaloLevel2() { return calo2_obj; }; */ |
|
|
/* ToFLevel2* GetToFLevel2() { return tof_obj; }; */ |
|
|
/* TrigLevel2* GetTrigLevel2() { return trig_obj; }; */ |
|
|
/* S4Level2* GetS4Level2() { return s4_obj; }; */ |
|
|
/* NDLevel2* GetNDLevel2() { return nd_obj; }; */ |
|
|
/* AcLevel2* GetAcLevel2() { return ac_obj; }; */ |
|
|
/* OrbitalInfo* GetOrbitalInfo(){ return orb_obj; }; */ |
|
|
/* TrkLevel1* GetTrkLevel1() { return ; }; */ |
|
|
/* TrkLevel2* GetTrkLevel2() { return TrkLevel2::GetTrkLevel2(); }; */ |
|
|
/* TrkHough* GetTrkHough() { return TrkHough::GetTrkHough(); }; */ |
|
|
/* CaloLevel1* GetCaloLevel1() { return CaloLevel1::GetCaloLevel1(); }; */ |
|
|
/* CaloLevel2* GetCaloLevel2() { return CaloLevel2::GetCaloLevel2(); }; */ |
|
|
/* ToFLevel2* GetToFLevel2() { return ToFLevel2::GetToFLevel2(); }; */ |
|
|
/* TrigLevel2* GetTrigLevel2() { return TrigLevel2::GetTrigLevel2(); }; */ |
|
|
/* S4Level2* GetS4Level2() { return S4Level2::GetS4Level2(); }; */ |
|
|
/* NDLevel2* GetNDLevel2() { return NDLevel2::GetNDLevel2(); }; */ |
|
|
/* AcLevel2* GetAcLevel2() { return AcLevel2::GetAcLevel2(); }; */ |
|
|
/* OrbitalInfo* GetOrbitalInfo(){ return OrbitalInfo::GetOrbitalInfo(); }; */ |
|
|
GL_RUN* GetRunInfo() { return run_obj; }; |
|
|
|
|
|
// ========================================= |
|
|
// methods needed to read/write Level2 trees |
|
|
// ========================================= |
|
| 221 |
void SetWhichTrees(TString); |
void SetWhichTrees(TString); |
| 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)); }; |
| 237 |
|
Bool_t UpdateRunInfo(TTree *,Long64_t); |
| 238 |
|
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); |
| 252 |
// methods needed to set brach addresses |
Int_t GetEntry(Long64_t); |
| 253 |
// ===================================== |
Int_t GetYodaEntry(); |
| 254 |
/* void* GetPointerToTrk(); */ |
|
| 255 |
/* void* GetPointerToTrk(int s); */ |
Long64_t GetEntries(){return pam_tree->GetEntries();}; |
| 256 |
/* void* GetPointerToCalo(); */ |
TChain* GetPamTree(){return pam_tree;}; |
| 257 |
/* void* GetPointerToCalo(int s); */ |
TChain* GetRunTree(){return run_tree;}; |
| 258 |
/* void* GetPointerToToF(); */ |
TTree* GetYodaTree(); |
| 259 |
/* void* GetPointerToTrig(); */ |
|
| 260 |
/* void* GetPointerToS4(); */ |
TFile* GetYodaFile(){return l0_file;}; // can be useful to know the name of level0 file we are using or similar things |
| 261 |
/* void* GetPointerToND(); */ |
|
| 262 |
/* void* GetPointerToAc(); */ |
// ============= |
| 263 |
/* void* GetPointerToOrb(); */ |
// DB connection |
| 264 |
/* void* GetPointerToRun(); */ |
// ============= |
| 265 |
|
void SetDBHost(TString str){host=str;}; |
| 266 |
|
void SetDBUser(TString str){user=str;}; |
| 267 |
|
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 |
| 273 |
|
// ======================================================== |
| 274 |
void* GetPointerTo(const char*); |
void* GetPointerTo(const char*); |
| 275 |
|
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; }; |
| 284 |
|
TrkLevel2 *GetTrkLevel2() { return trk2_obj; }; |
| 285 |
|
TrkHough *GetTrkHough() { return trkh_obj; }; |
| 286 |
|
CaloLevel1 *GetCaloLevel1() { return calo1_obj;}; |
| 287 |
|
CaloLevel2 *GetCaloLevel2() { return calo2_obj;}; |
| 288 |
|
ToFLevel2 *GetToFLevel2() { return tof_obj; }; |
| 289 |
|
TrigLevel2 *GetTrigLevel2() { return trig_obj; }; |
| 290 |
|
S4Level2 *GetS4Level2() { return s4_obj; }; |
| 291 |
|
NDLevel2 *GetNDLevel2() { return nd_obj; }; |
| 292 |
|
AcLevel2 *GetAcLevel2() { return ac_obj; }; |
| 293 |
|
OrbitalInfo *GetOrbitalInfo(){ return orb_obj; }; |
| 294 |
|
GL_RUN *GetRunInfo() { return run_obj; }; |
| 295 |
|
SoftInfo *GetSoftInfo() { return soft_obj; }; // Emiliano |
| 296 |
|
|
| 297 |
// ============================================== |
// ============================================== |
| 298 |
// methods to retrieve subdetectors stored tracks |
// methods to retrieve subdetectors stored tracks |
| 299 |
// ============================================== |
// ============================================== |
| 300 |
TrkTrack* GetTrkStoredTrack(int seqno){return TrkLevel2::GetStoredTrack(seqno); }; |
TrkTrack* GetTrkStoredTrack(int seqno){return trk2_obj->TrkLevel2::GetStoredTrack(seqno); }; |
| 301 |
CaloTrkVar* GetCaloStoredTrack(int); |
CaloTrkVar* GetCaloStoredTrack(int); |
| 302 |
ToFTrkVar* GetToFStoredTrack(int); |
ToFTrkVar* GetToFStoredTrack(int); |
| 303 |
// |
// |
| 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 |
TRefArray* GetTracks(); //return sorted_tracks |
void SortTracks(); //assign value to variable sorted_tracks |
| 315 |
|
// TRefArray* GetTracks(); //return sorted_tracks |
| 316 |
|
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 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); |