/[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.4 by pam-fi, Fri Sep 29 10:02:30 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 <TrkLevel1.h>
13  #include <TrkLevel2.h>  #include <TrkLevel2.h>
14  #include <CaloLevel2.h>  #include <CaloLevel2.h>
15  #include <ToFLevel2.h>  #include <ToFLevel2.h>
# Line 16  Line 17 
17  #include <S4Level2.h>  #include <S4Level2.h>
18  #include <NDLevel2.h>  #include <NDLevel2.h>
19  #include <AcLevel2.h>  #include <AcLevel2.h>
20    #include <OrbitalInfo.h>
21    #include <OrbitalInfo.h>
22    #include <RunInfo.h>
23    #include <GLTables.h>
24    
25    
26  #include <TTree.h>  #include <TTree.h>
27    #include <TChain.h>
28  #include <TFile.h>  #include <TFile.h>
29    #include <TList.h>
30    #include <TKey.h>
31    #include <TSystemFile.h>
32    #include <TSystemDirectory.h>
33    
34  #include <iostream>  #include <iostream>
35  using namespace std;  using namespace std;
# Line 53  class PamTrack : public TrkTrack, public Line 64  class PamTrack : public TrkTrack, public
64   * 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.
65   */   */
66                                    
67  class PamLevel2 : public CaloLevel2, public TrkLevel2, public ToFLevel2, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2 {  class PamLevel2 : public CaloLevel2, public TrkLevel2, public TrkLevel1, public ToFLevel2, public TrigLevel2, public S4Level2, public NDLevel2, public AcLevel2, public OrbitalInfo {
68    
69   private:   private:
70    
71      TrkLevel2*  trk_obj;      TrkLevel1*   trk_l1_obj;
72      CaloLevel2* calo_obj;          TrkLevel2*   trk_obj;
73      ToFLevel2*  tof_obj;          CaloLevel2*  calo_obj;
74      TrigLevel2* trig_obj;      ToFLevel2*   tof_obj;
75      S4Level2*   s4_obj;      TrigLevel2*  trig_obj;
76      NDLevel2*   nd_obj;      S4Level2*    s4_obj;
77      AcLevel2*   ac_obj;      NDLevel2*    nd_obj;
78        AcLevel2*    ac_obj;
79            OrbitalInfo* orb_obj;
80            
81            GL_RUN*      run_obj;
82            
83            TRefArray*   sorted_tracks; // TEMPORANEO ... lo mettero` membro di TrkLevel2
84            
85            TChain*      Tout;
86            
87   public:   public:
88    
89            Bool_t CAL;
90            Bool_t TRK;
91            Bool_t TRG;
92            Bool_t TOF;
93            Bool_t S4;
94            Bool_t ND;
95            Bool_t AC;
96            Bool_t ORB;
97            
98            Bool_t TRK_L1;
99    
100      PamLevel2();      PamLevel2();
101            ~PamLevel2();
102      TrkLevel2*  GetTrkLevel2()  {return trk_obj;};          
103      CaloLevel2* GetCaloLevel2() {return calo_obj;};          void Clear();
104      ToFLevel2*  GetToFLevel2()  {return tof_obj;};  
105      TrigLevel2* GetTrigLevel2() {return trig_obj;};          TrkLevel1*   GetTrkLevel1()  { return trk_l1_obj;  };
106      S4Level2* GetS4Level2() {return s4_obj;};          TrkLevel2*   GetTrkLevel2()  { return trk_obj;  };
107      NDLevel2* GetNDLevel2() {return nd_obj;};          CaloLevel2*  GetCaloLevel2() { return calo_obj; };
108      AcLevel2* GetAcLevel2() {return ac_obj;};      ToFLevel2*   GetToFLevel2()  { return tof_obj;  };
109            TrigLevel2*  GetTrigLevel2() { return trig_obj; };
110  //  =================================      S4Level2*    GetS4Level2()   { return s4_obj;   };
111  //  methods needed to ... well I am not shure they are needed      NDLevel2*    GetNDLevel2()   { return nd_obj;   };
112  //  =================================      AcLevel2*    GetAcLevel2()   { return ac_obj;   };
113      void*       GetPointerToTrk()  {return &trk_obj;};          OrbitalInfo* GetOrbitalInfo(){ return orb_obj;  };
114      void*       GetPointerToCalo() {return &calo_obj;};          GL_RUN*      GetRunInfo()    { return run_obj;  };
115      void*       GetPointerToToF()  {return &tof_obj;};          
116      void*       GetPointerToTrig() {return &trig_obj;};  //  =====================================
117      void*       GetPointerToS4() {return &s4_obj;};  //  methods needed to read Level2 trees
118      void*       GetPointerToND() {return &nd_obj;};  //  =====================================
119      void*       GetPointerToAc() {return &ac_obj;};          void    SetWhichTrees(TString);
120            TList*  GetListOfLevel2Files(TString, TString);
121      TTree* LoadPamTrees(TFile*);          Bool_t  CheckLevel2File(TString);
122        /*      TTree*  LoadPamTrees(TFile*);
123            TTree*  LoadPamTrees(TFile*,TString);
124            TChain* LoadPamTrees(TList*,TString);
125            TTree*  LoadRunTree(TFile*);
126            TChain* LoadRunTree(TList*);*/
127            void    SetBranchAddress();
128            TTree*  GetPamTree(TFile*,TString);
129            TTree*  GetPamTree(TFile* f){return GetPamTree(f,"+ALL");};
130            TChain* GetPamTree(TList*,TString);
131            TTree*  GetRunTree(TFile*);
132            TChain* GetRunTree(TList*);
133            
134    //  =====================================
135    //  methods needed to set brach addresses
136    //  =====================================
137            void*       GetPointerToTrk()  {return &trk_obj;};
138            void*       GetPointerToTrk(int s){
139                    switch (s) {
140                            case 1:  return &trk_l1_obj;
141                            case 2:  return &trk_obj;
142                            default: return 0;
143                    };
144            };
145            void*       GetPointerToCalo() {return &calo_obj; };
146            void*       GetPointerToToF()  {return &tof_obj;  };
147            void*       GetPointerToTrig() {return &trig_obj; };
148            void*       GetPointerToS4()   {return &s4_obj;   };
149            void*       GetPointerToND()   {return &nd_obj;   };
150            void*       GetPointerToAc()   {return &ac_obj;   };
151            void*       GetPointerToOrb()  {return &orb_obj;  };
152            void*       GetPointerToRun()  {return &run_obj;  };
153            void*       GetPointerTo(const char*);
154    
155    //  ==============================================
156    //  methods to retrieve subdetectors stored tracks
157    //  ==============================================
158            TrkTrack*   GetTrkStoredTrack(int seqno){return TrkLevel2::GetStoredTrack(seqno); };
159            CaloTrkVar* GetCaloStoredTrack(int);
160            ToFTrkVar*  GetToFStoredTrack(int);
161            //
162            PamTrack*   GetPamTrackAlong(TrkTrack*);
163    //      PamTrack*   GetPamTrackAlong(CaloTrkVar*);      //se serve
164    //      PamTrack*   GetPamTrackAlong(ToFTrkVar*);      //se serve
165            
166  //  =================================  //  =================================
167  //  methods to retrieve pamela tracks  //  methods to retrieve pamela tracks
168  //  =================================  //  =================================
169      PamTrack*     GetStoredTrack(Int_t itrk);      PamTrack*     GetStoredTrack(Int_t);
170      TClonesArray* GetTracks();          //
171      PamTrack*     GetTrack(int);          void          SortTracks(TString);          //assign value to variable sorted_tracks
172            TRefArray*    GetTracks();                  //return sorted_tracks
173            PamTrack*     GetTrack(int);
174      PamTrack*     GetTrackImage(int);      PamTrack*     GetTrackImage(int);
175            
176      ClassDef(PamLevel2,1);      ClassDef(PamLevel2,1);
177  };  };
178    

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

  ViewVC Help
Powered by ViewVC 1.1.23