/[PAMELA software]/PamelaLevel2/inc/PamLevel2.h
ViewVC logotype

Diff of /PamelaLevel2/inc/PamLevel2.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.15 by pam-fi, Thu Mar 15 12:18:51 2007 UTC revision 1.21 by mocchiut, Wed Apr 4 09:15:01 2007 UTC
# Line 15  Line 15 
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>
# Line 95  class PamLevel2 : public TObject { Line 96  class PamLevel2 : public TObject {
96      // ------------------------------      // ------------------------------
97      // variables to retrieve run info      // variables to retrieve run info
98      // ------------------------------      // ------------------------------
99      Int_t     irun;          //current run entry, relative to the TChain  //    Int_t     irun;          //current run entry, relative to the TChain
100      ULong64_t runfirstentry; //first entry of run, relative to the TChain      Long64_t  irun;          //current run entry, relative to the TChain
101      ULong64_t runlastentry;  //last  entry of run, relative to the TChain  //    ULong64_t runfirstentry; //first entry of run, relative to the TChain
102      Int_t     irunentry;     //position of current entry, relative to the run  //    ULong64_t runlastentry;  //last  entry of run, relative to the TChain
103    //    Int_t     irunentry;     //position of current entry, relative to the run
104        Long64_t  runfirstentry; //first entry of run, relative to the TChain
105        Long64_t  runlastentry;  //last  entry of run, relative to the TChain
106        Long64_t  irunentry;     //position of current entry, relative to the run
107      TChain*   run_tree;      TChain*   run_tree;
108      TTree*    run_tree_clone;      TTree*    run_tree_clone;
109      TChain*   sel_tree;      TChain*   sel_tree;
# Line 110  class PamLevel2 : public TObject { Line 115  class PamLevel2 : public TObject {
115      TFile*      l0_file;      TFile*      l0_file;
116      TTree*      l0_tree;      TTree*      l0_tree;
117      Int_t       iroot;            Int_t       iroot;      
118        Int_t       prevshift; // to remember if any shift is needed to synchronize l0 and l2 data instead of calculating any time
119      // --------------------------------------------      // --------------------------------------------
120      // variables to store Level0 info (if required)      // variables to store Level0 info (if required)
121      // --------------------------------------------      // --------------------------------------------
122      EventHeader* h0_obj;      EventHeader* h0_obj;
123      TrkLevel0*   trk0_obj;      TrkLevel0*   trk0_obj;
124        CaloLevel0*  calo0_obj;
125    
126      // ---------------------------      // ---------------------------
127      // variables to connect the DB      // variables to connect the DB
# Line 129  class PamLevel2 : public TObject { Line 136  class PamLevel2 : public TObject {
136      // ---------------------------------------------      // ---------------------------------------------
137      TChain* pam_tree;      TChain* pam_tree;
138      TTree*  pam_tree_clone[NCLONES];      TTree*  pam_tree_clone[NCLONES];
139    
140      // --------------------------------------------      // --------------------------------------------
141      // variables to store Level0 info (if required)      // variables to store Level0 info (if required)
142      // --------------------------------------------      // --------------------------------------------
# Line 152  class PamLevel2 : public TObject { Line 160  class PamLevel2 : public TObject {
160      TClonesArray *tsorted;      TClonesArray *tsorted;
161      TClonesArray *timage;      TClonesArray *timage;
162      PamTrack    *track; //store the last required      PamTrack    *track; //store the last required
163        TString howtosort;
164        Float_t sortthr;
165    
166      // -----      // -----
167      // flags      // flags
# Line 179  class PamLevel2 : public TObject { Line 188  class PamLevel2 : public TObject {
188    
189      Int_t  SELLI; //trees of selected events (there is a selection list)      Int_t  SELLI; //trees of selected events (there is a selection list)
190    
191        void Initialize();
192    
193    
194   public:   public:
195                    
196        PamLevel2(TString ddir,TString list,TString detlist);
197        PamLevel2(TString ddir,TString list);
198      PamLevel2();      PamLevel2();
199      ~PamLevel2(){Delete();};      ~PamLevel2(){Delete();};
200                    
201      void Clear();      void Clear();
202        void Reset();
203      void Delete();      void Delete();
204    
205                    
# Line 207  class PamLevel2 : public TObject { Line 221  class PamLevel2 : public TObject {
221      TTree*  GetRunTree(TFile*);      TTree*  GetRunTree(TFile*);
222      TChain* GetRunTree(TList*);      TChain* GetRunTree(TList*);
223      TChain* GetRunTree(TString ddir,TString list){ return GetRunTree(GetListOfLevel2Files(ddir,list)); };      TChain* GetRunTree(TString ddir,TString list){ return GetRunTree(GetListOfLevel2Files(ddir,list)); };
224      Bool_t  UpdateRunInfo(TTree *,ULong64_t);      Bool_t  UpdateRunInfo(TTree *,Long64_t);
225      Bool_t  UpdateRunInfo(TChain *,ULong64_t);      Bool_t  UpdateRunInfo(TChain *,Long64_t);
226        Bool_t  UpdateRunInfo(Long64_t iev);//{ return UpdateRunInfo(run_tree,iev); };
227    
228      void    CreateCloneTrees0(TChain *fChain, TFile* file);      void    CreateCloneTrees0(TChain *fChain, TFile* file);
229      void    CreateCloneTrees(TFile* file);      void    CreateCloneTrees(TFile* file);
# Line 219  class PamLevel2 : public TObject { Line 234  class PamLevel2 : public TObject {
234      void    SetBranchAddress(TTree *);      void    SetBranchAddress(TTree *);
235      void    SetBranchAddress(TChain *);      void    SetBranchAddress(TChain *);
236    
237      Int_t   GetEntry(Int_t);  //    Int_t   GetEntry(Int_t);
238        Int_t   GetEntry(Long64_t);
239      Int_t   GetYodaEntry();      Int_t   GetYodaEntry();
240    
241        Long64_t GetEntries(){return pam_tree->GetEntries();};
242      TChain* GetPamTree(){return pam_tree;};      TChain* GetPamTree(){return pam_tree;};
243      TChain* GetRunTree(){return run_tree;};      TChain* GetRunTree(){return run_tree;};
244      TTree*  GetYodaTree();      TTree*  GetYodaTree();
245    
246        TFile*  GetYodaFile(){return l0_file;}; // can be useful to know the name of level0 file we are using or similar things
247    
248  //  =============  //  =============
249  //  DB connection  //  DB connection
250  //  =============  //  =============
# Line 240  class PamLevel2 : public TObject { Line 259  class PamLevel2 : public TObject {
259      void*       GetPointerTo(const char*);      void*       GetPointerTo(const char*);
260      EventHeader  *GetEventHeader()  { return h0_obj; };      EventHeader  *GetEventHeader()  { return h0_obj; };
261      TrkLevel0    *GetTrkLevel0()  { return trk0_obj; };      TrkLevel0    *GetTrkLevel0()  { return trk0_obj; };
262        CaloLevel0   *GetCaloLevel0()  { return calo0_obj; };
263    
264      TrkLevel1    *GetTrkLevel1()  { return trk1_obj; };      TrkLevel1    *GetTrkLevel1()  { return trk1_obj; };
265      TrkLevel2    *GetTrkLevel2()  { return trk2_obj; };      TrkLevel2    *GetTrkLevel2()  { return trk2_obj; };
# Line 272  class PamLevel2 : public TObject { Line 292  class PamLevel2 : public TObject {
292      PamTrack*     GetStoredTrack(Int_t);      PamTrack*     GetStoredTrack(Int_t);
293      //      //
294      void          SortTracks(TString);          //assign value to variable sorted_tracks      void          SortTracks(TString);          //assign value to variable sorted_tracks
295        void          SortTracks();          //assign value to variable sorted_tracks
296  //    TRefArray*    GetTracks();                  //return sorted_tracks  //    TRefArray*    GetTracks();                  //return sorted_tracks
297      TClonesArray* GetTracks();                  //return sorted_tracks      TClonesArray* GetTracks();                  //return sorted_tracks
298      PamTrack*     GetTrack(int);      PamTrack*     GetTrack(int);
299      PamTrack*     GetTrackImage(int);      PamTrack*     GetTrackImage(int);
300        void          SetSortingMethod(TString how){ howtosort = how; return;};
301        TString       GetSortingMethod(){return howtosort;};
302        void          SetNucleiSortingThreshold(Float_t nucleithr){ sortthr = nucleithr; return;};
303        Float_t       GetNucleiSortingThreshold(){ return sortthr;};
304                    
305  //  =================================  //  =================================
306  //  other methods  //  other methods

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.21

  ViewVC Help
Powered by ViewVC 1.1.23