/[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.1 by pam-fi, Fri Jun 16 16:43:55 2006 UTC revision 1.2 by pam-fi, Fri Aug 4 13:31:34 2006 UTC
# Line 7  Line 7 
7  #ifndef pamlevel2_h  #ifndef pamlevel2_h
8  #define pamlevel2_h  #define pamlevel2_h
9    
10  #include <TClonesArray.h>  #include <TRefArray.h>
11    
12  #include <TrkLevel2.h>  #include <TrkLevel2.h>
13  #include <CaloLevel2.h>  #include <CaloLevel2.h>
# Line 16  Line 16 
16  #include <S4Level2.h>  #include <S4Level2.h>
17  #include <NDLevel2.h>  #include <NDLevel2.h>
18  #include <AcLevel2.h>  #include <AcLevel2.h>
19    #include <OrbitalInfo.h>
20    
21  #include <TTree.h>  #include <TTree.h>
22    #include <TChain.h>
23  #include <TFile.h>  #include <TFile.h>
24    #include <TList.h>
25    #include <TKey.h>
26    #include <TSystemFile.h>
27    #include <TSystemDirectory.h>
28    
29  #include <iostream>  #include <iostream>
30  using namespace std;  using namespace std;
# Line 53  class PamTrack : public TrkTrack, public Line 59  class PamTrack : public TrkTrack, public
59   * 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.
60   */   */
61                                    
62  class PamLevel2 : public CaloLevel2, public TrkLevel2, public ToFLevel2, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2 {  class PamLevel2 : public CaloLevel2, public TrkLevel2, public ToFLevel2, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2, public OrbitalInfo {
63    
64   private:   private:
65    
66      TrkLevel2*  trk_obj;      TrkLevel2*   trk_obj;
67      CaloLevel2* calo_obj;      CaloLevel2*  calo_obj;
68      ToFLevel2*  tof_obj;      ToFLevel2*   tof_obj;
69      TrigLevel2* trig_obj;      TrigLevel2*  trig_obj;
70      S4Level2*   s4_obj;      S4Level2*    s4_obj;
71      NDLevel2*   nd_obj;      NDLevel2*    nd_obj;
72      AcLevel2*   ac_obj;      AcLevel2*    ac_obj;
73            OrbitalInfo* orb_obj;
74            
75            TRefArray*   sorted_tracks; // TEMPORANEO ... lo mettero` menbro di TrkLevel2
76            
77   public:   public:
78    
79            Bool_t CAL;
80            Bool_t TRK;
81            Bool_t TRG;
82            Bool_t TOF;
83            Bool_t S4;
84            Bool_t ND;
85            Bool_t AC;
86            Bool_t ORB;
87    
88      PamLevel2();      PamLevel2();
89            ~PamLevel2();
90      TrkLevel2*  GetTrkLevel2()  {return trk_obj;};          
91      CaloLevel2* GetCaloLevel2() {return calo_obj;};          void Clear();
92      ToFLevel2*  GetToFLevel2()  {return tof_obj;};  
93      TrigLevel2* GetTrigLevel2() {return trig_obj;};      TrkLevel2*   GetTrkLevel2()  { return trk_obj;  };
94      S4Level2* GetS4Level2() {return s4_obj;};      CaloLevel2*  GetCaloLevel2() { return calo_obj; };
95      NDLevel2* GetNDLevel2() {return nd_obj;};      ToFLevel2*   GetToFLevel2()  { return tof_obj;  };
96      AcLevel2* GetAcLevel2() {return ac_obj;};      TrigLevel2*  GetTrigLevel2() { return trig_obj; };
97            S4Level2*    GetS4Level2()   { return s4_obj;   };
98  //  =================================      NDLevel2*    GetNDLevel2()   { return nd_obj;   };
99  //  methods needed to ... well I am not shure they are needed      AcLevel2*    GetAcLevel2()   { return ac_obj;   };
100  //  =================================          OrbitalInfo* GetOrbitalInfo(){ return orb_obj;  };
101      void*       GetPointerToTrk()  {return &trk_obj;};  
102      void*       GetPointerToCalo() {return &calo_obj;};  //  =====================================
103      void*       GetPointerToToF()  {return &tof_obj;};  //  methods needed to read Level2 trees
104      void*       GetPointerToTrig() {return &trig_obj;};  //  =====================================
105      void*       GetPointerToS4() {return &s4_obj;};          void    SetWhichTrees(TString);
106      void*       GetPointerToND() {return &nd_obj;};          TList*  GetListOfLevel2Files(TString, TString);
107      void*       GetPointerToAc() {return &ac_obj;};          Bool_t  CheckLevel2File(TString);
108            TTree*  LoadPamTrees(TFile*);
109      TTree* LoadPamTrees(TFile*);          TTree*  LoadPamTrees(TFile*,TString);
110            TChain* LoadPamTrees(TList*,TString);
111            
112    //  =====================================
113    //  methods needed to set brach addresses
114    //  =====================================
115            void*       GetPointerToTrk()  {return &trk_obj;};
116            void*       GetPointerToCalo() {return &calo_obj;};
117            void*       GetPointerToToF()  {return &tof_obj;};
118            void*       GetPointerToTrig() {return &trig_obj;};
119            void*       GetPointerToS4()   {return &s4_obj;};
120            void*       GetPointerToND()   {return &nd_obj;};
121            void*       GetPointerToAc()   {return &ac_obj;};
122            void*       GetPointerToOrb()  {return &orb_obj;};
123            
124  //  =================================  //  =================================
125  //  methods to retrieve pamela tracks  //  methods to retrieve pamela tracks
126  //  =================================  //  =================================
127      PamTrack*     GetStoredTrack(Int_t itrk);      PamTrack*     GetStoredTrack(Int_t itrk);
128      TClonesArray* GetTracks();          void          SortTracks();                 //assign value to variable sorted_tracks
129      PamTrack*     GetTrack(int);          TRefArray*    GetTracks();                  //return sorted_tracks
130            PamTrack*     GetTrack(int);
131      PamTrack*     GetTrackImage(int);      PamTrack*     GetTrackImage(int);
132            
133      ClassDef(PamLevel2,1);      ClassDef(PamLevel2,1);
134  };  };
135    

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

  ViewVC Help
Powered by ViewVC 1.1.23