/[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.6 by pam-fi, Tue Nov 28 10:58:34 2006 UTC revision 1.10 by pam-fi, Mon Jan 15 11:51:40 2007 UTC
# Line 26  Line 26 
26    
27    
28  #include <TTree.h>  #include <TTree.h>
29    #include <TFriendElement.h>
30  #include <TChain.h>  #include <TChain.h>
31  #include <TFile.h>  #include <TFile.h>
32  #include <TList.h>  #include <TList.h>
# Line 42  using namespace std; Line 43  using namespace std;
43   * This class inherites from TrkTrack, CaloTrkVar ecc...   * This class inherites from TrkTrack, CaloTrkVar ecc...
44   *   *
45   */   */
46  class PamTrack : public TrkTrack, public CaloTrkVar, public ToFTrkVar {  //class PamTrack : public TrkTrack, public CaloTrkVar, public ToFTrkVar {
47    class PamTrack : public TObject {
48    
49   private:   private:
50    
# Line 50  class PamTrack : public TrkTrack, public Line 52  class PamTrack : public TrkTrack, public
52      CaloTrkVar* calo_track;      CaloTrkVar* calo_track;
53      ToFTrkVar*  tof_track;      ToFTrkVar*  tof_track;
54    
55        bool candeleteobj;
56    
57    //    TClonesArray *Cluster;        ///< clusters (if stored)
58    
59   public:   public:
60    
61      PamTrack();      PamTrack();
   
62      PamTrack(TrkTrack* , CaloTrkVar* , ToFTrkVar* );      PamTrack(TrkTrack* , CaloTrkVar* , ToFTrkVar* );
63        PamTrack(const PamTrack&);
64        ~PamTrack(){ Delete(); };
65    
66        void Clear();
67        void Clear(Option_t *option){Clear();};
68        void Delete();
69    
70        TrkTrack*   GetTrkTrack(){return trk_track;};
71        CaloTrkVar* GetCaloTrack(){return calo_track;};
72        ToFTrkVar*  GetToFTrack(){return tof_track;};
73    
74      ClassDef(PamTrack,1);      ClassDef(PamTrack,1);
75  };  };
# Line 66  class PamTrack : public TrkTrack, public Line 81  class PamTrack : public TrkTrack, public
81   * 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.
82   */   */
83                                    
84  class PamLevel2 : public CaloLevel2, public CaloLevel1, public TrkLevel2, public TrkLevel1, public TrkHough, public ToFLevel2, 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 {
85    class PamLevel2 : public TObject {
86    
87   private:   private:
88     public:
89    
90      TrkLevel1*   trk1_obj;      TrkLevel1*   trk1_obj;
91      TrkLevel2*   trk2_obj;      TrkLevel2*   trk2_obj;
# Line 86  class PamLevel2 : public CaloLevel2, pub Line 103  class PamLevel2 : public CaloLevel2, pub
103                    
104      GL_RUN*      run_obj;      GL_RUN*      run_obj;
105            
106      TRefArray*   sorted_tracks;      TTree*       tree_clone[8];
107            
108  //    TChain*      Tout;  //    TRefArray*    sorted_tracks;
109            //    TRefArray    sorted_tracks;
110   public:  
111        TClonesArray *tsorted;
112        TClonesArray *timage;
113        
114    
115        PamTrack    *track; //store the last required
116    
117    
118      Bool_t CAL2; //level2 branch      Bool_t CAL2; //level2 branch
119      Bool_t CAL1; //level1 branch      Bool_t CAL1; //level1 branch
# Line 105  class PamLevel2 : public CaloLevel2, pub Line 128  class PamLevel2 : public CaloLevel2, pub
128      Bool_t ND;      Bool_t ND;
129      Bool_t AC;      Bool_t AC;
130      Bool_t ORB;      Bool_t ORB;
131    
132        Bool_t RUN;
133                    
134      PamLevel2();      PamLevel2();
135      ~PamLevel2();      ~PamLevel2(){Delete();};
136                    
137      void Clear();      void Clear();
138        void Delete();
139    
140      TrkLevel1*   GetTrkLevel1()  { return trk1_obj;  };      GL_RUN*      GetRunInfo()    { return run_obj; };
     TrkLevel2*   GetTrkLevel2()  { return trk2_obj;  };  
     TrkHough*    GetTrkHough()   { return trkh_obj;  };  
     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;  };  
     GL_RUN*      GetRunInfo()    { return run_obj;  };  
141                    
142  //  =====================================  //  =========================================
143  //  methods needed to read Level2 trees  //  methods needed to read/write Level2 trees
144  //  =====================================  //  =========================================
145      void    SetWhichTrees(TString);      void    SetWhichTrees(TString);
146        void    GetWhichTrees(TFile*);
147    
148        TTree*  GetPamTree(TFile*,TString);
149        TTree*  GetPamTree(TFile* f){return GetPamTree(f,"");};
150    
151      TList*  GetListOfLevel2Files(TString, TString);      TList*  GetListOfLevel2Files(TString, TString);
152      Bool_t  CheckLevel2File(TString);      Bool_t  CheckLevel2File(TString);
 //    void    SetBranchAddress();  
     TTree*  GetPamTree(TFile*,TString);  
     TTree*  GetPamTree(TFile* f){return GetPamTree(f,"+ALL");};  
153      TChain* GetPamTree(TList*,TString);      TChain* GetPamTree(TList*,TString);
154        TChain* GetPamTree(TString ddir,TString list,TString detlist){ return GetPamTree(GetListOfLevel2Files(ddir,list),detlist); };
155        TChain* GetPamTree(TString ddir,TString list){ return GetPamTree(GetListOfLevel2Files(ddir,list),""); };
156    
157      TTree*  GetRunTree(TFile*);      TTree*  GetRunTree(TFile*);
158      TChain* GetRunTree(TList*);      TChain* GetRunTree(TList*);
159        
160        void    CreateCloneTrees0(TChain *fChain, TFile* file);
161        void    CreateCloneTrees(TFile* file);
162        void    FillCloneTrees();
163        TTree  *GetCloneTree(TString);
164        void    WriteCloneTrees();
165    
166      void    SetBranchAddress(TTree *);      void    SetBranchAddress(TTree *);
167      void    SetBranchAddress(TChain *);      void    SetBranchAddress(TChain *);
168    
169  //  =====================================  //  ========================================================
170  //  methods needed to set brach addresses  //  methods needed to retrieve subdetector general variables
171  //  =====================================  //  ========================================================
     void*       GetPointerToTrk()  {return &trk2_obj;};  
     void*       GetPointerToTrk(int s){  
         switch (s) {  
         case 1:  return &trk1_obj;  
         case 2:  return &trk2_obj;  
         case 3:  return &trkh_obj;  
         default: return 0;  
         };  
     };  
     void*       GetPointerToCalo() {return &calo2_obj; };  
     void*       GetPointerToCalo(int s){  
         switch (s) {  
         case 1:  return &calo1_obj;  
         case 2:  return &calo2_obj;  
         default: return 0;  
         };  
     };  
     void*       GetPointerToToF()  {return &tof_obj;  };  
     void*       GetPointerToTrig() {return &trig_obj; };  
     void*       GetPointerToS4()   {return &s4_obj;   };  
     void*       GetPointerToND()   {return &nd_obj;   };  
     void*       GetPointerToAc()   {return &ac_obj;   };  
     void*       GetPointerToOrb()  {return &orb_obj;  };  
     void*       GetPointerToRun()  {return &run_obj;  };  
172      void*       GetPointerTo(const char*);      void*       GetPointerTo(const char*);
173        TrkLevel1    *GetTrkLevel1()  { return trk1_obj;};
174        TrkLevel2    *GetTrkLevel2()  {  return trk2_obj;};
175        TrkHough     *GetTrkHough()   { return trkh_obj;};
176        CaloLevel1   *GetCaloLevel1() { return calo1_obj;};
177        CaloLevel2   *GetCaloLevel2() { return calo2_obj;};
178        ToFLevel2    *GetToFLevel2()  { return tof_obj;};
179        TrigLevel2   *GetTrigLevel2() { return trig_obj;};
180        S4Level2     *GetS4Level2()   { return s4_obj;};
181        NDLevel2     *GetNDLevel2()   { return nd_obj;};
182        AcLevel2     *GetAcLevel2()   { return ac_obj;};
183        OrbitalInfo  *GetOrbitalInfo(){ return orb_obj;};
184    
185  //  ==============================================  //  ==============================================
186  //  methods to retrieve subdetectors stored tracks  //  methods to retrieve subdetectors stored tracks
187  //  ==============================================  //  ==============================================
188      TrkTrack*   GetTrkStoredTrack(int seqno){return TrkLevel2::GetStoredTrack(seqno); };      TrkTrack*   GetTrkStoredTrack(int seqno){return trk2_obj->TrkLevel2::GetStoredTrack(seqno); };
189      CaloTrkVar* GetCaloStoredTrack(int);      CaloTrkVar* GetCaloStoredTrack(int);
190      ToFTrkVar*  GetToFStoredTrack(int);      ToFTrkVar*  GetToFStoredTrack(int);
191      //      //
# Line 186  class PamLevel2 : public CaloLevel2, pub Line 199  class PamLevel2 : public CaloLevel2, pub
199      PamTrack*     GetStoredTrack(Int_t);      PamTrack*     GetStoredTrack(Int_t);
200      //      //
201      void          SortTracks(TString);          //assign value to variable sorted_tracks      void          SortTracks(TString);          //assign value to variable sorted_tracks
202      TRefArray*    GetTracks();                  //return sorted_tracks  //    TRefArray*    GetTracks();                  //return sorted_tracks
203        TClonesArray* GetTracks();                  //return sorted_tracks
204      PamTrack*     GetTrack(int);      PamTrack*     GetTrack(int);
205      PamTrack*     GetTrackImage(int);      PamTrack*     GetTrackImage(int);
206                    
207  //  =================================  //  =================================
208  //  other methods  //  other methods
209  //  =================================  //  =================================
210      Int_t ntrk(){ return TrkLevel2::ntrk(); };  //    Int_t ntrk(){ return trk2_obj->TrkLevel2::ntrk(); };
211    
212    
213      ClassDef(PamLevel2,1);      ClassDef(PamLevel2,1);

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.10

  ViewVC Help
Powered by ViewVC 1.1.23