/[PAMELA software]/PamelaLevel2/src/PamLevel2.cpp
ViewVC logotype

Diff of /PamelaLevel2/src/PamLevel2.cpp

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

revision 1.5 by pam-fi, Mon Oct 9 08:57:42 2006 UTC revision 1.22 by mocchiut, Thu Mar 8 13:46:34 2007 UTC
# Line 7  Line 7 
7   * Default constructor   * Default constructor
8   */   */
9  PamTrack::PamTrack(){  PamTrack::PamTrack(){
10      trk_track  = this->TrkTrack::GetTrkTrack();      trk_track  = 0;
11      calo_track = this->CaloTrkVar::GetCaloTrkVar();      calo_track = 0;
12      tof_track  = this->ToFTrkVar::GetToFTrkVar();      tof_track  = 0;
13        candeleteobj = 0;
14  };  };
15  //--------------------------------------  //--------------------------------------
16  //  //
# Line 19  PamTrack::PamTrack(){ Line 20  PamTrack::PamTrack(){
20   * Constructor   * Constructor
21   */   */
22  PamTrack::PamTrack(TrkTrack* t, CaloTrkVar* c, ToFTrkVar* o){  PamTrack::PamTrack(TrkTrack* t, CaloTrkVar* c, ToFTrkVar* o){
23      trk_track  = this->TrkTrack::GetTrkTrack();  
24      calo_track = this->CaloTrkVar::GetCaloTrkVar();      trk_track  = 0;
25      tof_track  = this->ToFTrkVar::GetToFTrkVar();      calo_track = 0;
26      if(t) *trk_track  = *t;      tof_track  = 0;
27      if(c) *calo_track = *c;  //     if(t)trk_track  = new TrkTrack(*t);
28      if(o) *tof_track  = *o;      //     if(c)calo_track = new CaloTrkVar(*c);
29    //     if(o)tof_track  = new ToFTrkVar(*o);
30        if(t)trk_track  = t;
31        if(c)calo_track = c;
32        if(o)tof_track  = o;
33        candeleteobj = 0;
34    
35  };  };
36    PamTrack::PamTrack(const PamTrack& track){
37    
38        TrkTrack   *t = track.trk_track;
39        CaloTrkVar *c = track.calo_track;
40        ToFTrkVar  *o = track.tof_track;
41    
42        trk_track  = 0;
43        calo_track = 0;
44        tof_track  = 0;
45        if(t)trk_track  = new TrkTrack(*t);
46        if(c)calo_track = new CaloTrkVar(*c);
47        if(o)tof_track  = new ToFTrkVar(*o);
48        candeleteobj = 1;
49        
50    }
51    void PamTrack::Clear(){
52    
53    //    cout << "PamTrack::Clear() "<<candeleteobj<<endl;
54        if(candeleteobj){
55            if(trk_track)  trk_track->TrkTrack::Clear();
56            if(calo_track) calo_track->CaloTrkVar::Clear();//???
57            if(tof_track)  tof_track->ToFTrkVar::Clear();//???
58        }else{
59            trk_track  = 0;
60            calo_track = 0;
61            tof_track  = 0;
62        }
63    }
64    void PamTrack::Delete(){
65    //    cout << "PamTrack::Delete() "<<candeleteobj<<endl;
66        if(candeleteobj){
67            if(trk_track)  {
68                trk_track->TrkTrack::Clear();
69                delete trk_track;
70            }
71            if(calo_track){
72                calo_track->CaloTrkVar::Clear();//???
73                delete calo_track;
74            }
75            if(tof_track){
76                tof_track->ToFTrkVar::Clear();//???
77                delete tof_track;
78            }
79        }else{
80            Clear();
81        }
82    }
83  //--------------------------------------  //--------------------------------------
84  //  //
85  //  //
# Line 36  PamTrack::PamTrack(TrkTrack* t, CaloTrkV Line 89  PamTrack::PamTrack(TrkTrack* t, CaloTrkV
89   */   */
90  PamLevel2::PamLevel2(){  PamLevel2::PamLevel2(){
91                    
92      trk_l1_obj  = this->TrkLevel1::GetTrkLevel1();        //     trk2_obj  = TrkLevel2::GetTrkLevel2();
93          trk_obj     = this->TrkLevel2::GetTrkLevel2();  //     trk1_obj  = TrkLevel1::GetTrkLevel1();
94          calo_obj    = this->CaloLevel2::GetCaloLevel2();  //     trkh_obj  = TrkHough::GetTrkHough();
95      tof_obj     = this->ToFLevel2::GetToFLevel2();  //     calo1_obj = CaloLevel1::GetCaloLevel1();
96      trig_obj    = this->TrigLevel2::GetTrigLevel2();  //     calo2_obj = CaloLevel2::GetCaloLevel2();
97      s4_obj      = this->S4Level2::GetS4Level2();  //     tof_obj   = ToFLevel2::GetToFLevel2();
98      nd_obj      = this->NDLevel2::GetNDLevel2();  //     trig_obj  = TrigLevel2::GetTrigLevel2();
99      ac_obj      = this->AcLevel2::GetAcLevel2();  //     s4_obj    = S4Level2::GetS4Level2();
100          orb_obj     = this->OrbitalInfo::GetOrbitalInfo();  //     nd_obj    = NDLevel2::GetNDLevel2();
101    //     ac_obj    = AcLevel2::GetAcLevel2();
102    //     orb_obj   = OrbitalInfo::GetOrbitalInfo();
103        
104        h0_obj    = 0;
105        trk0_obj  = 0;
106    
107          run_obj     = new GL_RUN();      trk2_obj  = 0;
108                trk1_obj  = 0;
109          sorted_tracks = new TRefArray();      trkh_obj  = 0;
110        calo1_obj = 0;
111        calo2_obj = 0;
112        tof_obj   = 0;
113        trig_obj  = 0;
114        s4_obj    = 0;
115        nd_obj    = 0;
116        ac_obj    = 0;
117        orb_obj   = 0;
118    
119        run_obj   = 0;//new GL_RUN();
120        soft_obj   = 0;// Emiliano
121        irun = -1;
122        runfirstentry = 0ULL;
123        runlastentry = 0ULL;
124    
125        l0_file = NULL;
126        l0_tree = NULL;
127        iroot   = -1;
128        dbc     = 0;
129        
130        irun = -1;
131        run_tree = NULL;
132        run_tree_clone = NULL;
133        sel_tree = NULL;
134        sel_tree_clone = NULL;
135        
136        irunentry = -1;
137        pam_tree = NULL;
138        for(Int_t i=0; i<NCLONES; i++ )pam_tree_clone[i]=NULL;
139    
140        host = "mysql://localhost/pamelaprod";
141        user = "anonymous";
142        psw = "";
143        const char *pamdbhost=gSystem->Getenv("PAM_DBHOST");
144        const char *pamdbuser=gSystem->Getenv("PAM_DBUSER");
145        const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW");
146        if ( !pamdbhost ) pamdbhost = "";
147        if ( !pamdbuser ) pamdbuser = "";
148        if ( !pamdbpsw ) pamdbpsw = "";
149        if ( strcmp(pamdbhost,"") ) host = pamdbhost;
150        if ( strcmp(pamdbuser,"") ) user = pamdbuser;
151        if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw;
152    
153          CAL = true;      
154          TRK = true;  
155          TRG = true;  //    sorted_tracks = 0;//new TRefArray();
156          TOF = true;      
157          S4  = true;      CAL0 = false;
158          ND  = true;      CAL1 = true;
159          AC  = true;      CAL2 = true;
160          ORB = true;      TRK2 = true;
161        TRK1 = false;
162        TRKh = false;
163        TRKh = false;
164        TRG  = true;
165        TOF  = true;
166        TOF0 = false;
167        S4   = true;
168        ND   = true;
169        AC   = true;
170        ORB  = true;
171        
172        RUN  = true;
173    
174          TRK_L1 = false;      SELLI = -1;
175    
176        tsorted=0;
177        timage=0;
178    
         Tout  = NULL;  
179  };  };
180  /**  /**
181   * Destructor   * Delete the event (act as Dtor)
182   */   */
183  PamLevel2::~PamLevel2(){  void PamLevel2::Delete(){
                   
         TrkLevel1::Clear();  
           
         TrkLevel2::Clear();  
         CaloLevel2::Clear();  
         ToFLevel2::Clear();  
         TrigLevel2::Clear();  
         S4Level2::Clear();  
         NDLevel2::Clear();  
         AcLevel2::Clear();  
         OrbitalInfo::Clear();  
           
         delete run_obj;  
           
 //      delete sorted_tracks;  
         sorted_tracks->Delete(); // clean the reference array  
           
         if(Tout)Tout->Delete(); // delete loaded tree from memory  
184                    
185        if(run_obj)delete run_obj;
186        if(soft_obj)delete soft_obj; //Emiliano
187    
188    //    cout << "void PamLevel2::Clear()"<<endl;
189        if(h0_obj)   delete h0_obj;
190        if(trk0_obj) delete trk0_obj;      
191        if(trk1_obj) delete trk1_obj;      
192        if(trk2_obj) delete trk2_obj;
193        if(trkh_obj) delete trkh_obj;
194        if(calo1_obj)delete calo1_obj;
195        if(calo2_obj)delete calo2_obj;
196        if(tof_obj)  delete tof_obj;
197        if(trig_obj) delete trig_obj;
198        if(s4_obj)   delete s4_obj;
199        if(nd_obj)   delete nd_obj;
200        if(ac_obj)   delete ac_obj;
201        if(orb_obj)  delete orb_obj;
202        
203        if(tsorted){
204            tsorted->Delete();
205            delete tsorted;
206        }
207        if(timage){
208            timage->Delete();
209            delete timage;
210        }
211    
212        if(dbc){
213            dbc->Close();
214            delete dbc;
215        }
216        
217        if(l0_file)l0_file->Close();
218        if(pam_tree)pam_tree->Delete();;
219        if(run_tree)run_tree->Delete();;
220        if(sel_tree)sel_tree->Delete();;
221        for(Int_t i=0; i<NCLONES; i++ )if(pam_tree_clone[i])pam_tree_clone[i]->Delete();;
222        if(run_tree_clone)run_tree_clone->Delete();;
223        if(sel_tree_clone)sel_tree_clone->Delete();;
224        
225    
226  };  };
227    
228  /**  /**
229   * Clear the event   * Clear the event (NB! does not deallocate objects)
230   */   */
231  void PamLevel2::Clear(){  void PamLevel2::Clear(){
232                    
233          TrkLevel1::Clear();  //    cout << "void PamLevel2::Clear()"<<endl;
234            
235          TrkLevel2::Clear();  //
236          CaloLevel2::Clear();  // This method is called once for every entry but RunInfo and SoftInfo do not change until the next run so we cannot clear them here unless we don't
237          ToFLevel2::Clear();  // want to load them for each event even if they are the same...
238          TrigLevel2::Clear();  //
239          S4Level2::Clear();  //    if(run_obj)delete run_obj;
240          NDLevel2::Clear();  //    if(run_obj) run_obj->Clear();  // Emiliano: Do not deallocate run_obj here, it will give segmentation fault! call clear instead
241          AcLevel2::Clear();  //    if(soft_obj) soft_obj->Clear();
242          OrbitalInfo::Clear();  
243                if(h0_obj)   h0_obj->Clear();      
244          sorted_tracks->Delete(); // clean the reference array      if(trk0_obj) trk0_obj->Clear();    
245                if(trk1_obj) trk1_obj->Clear();    
246        if(trk2_obj) trk2_obj->Clear();
247        if(trkh_obj) trkh_obj->Clear();
248        if(calo1_obj)calo1_obj->Clear();
249        if(calo2_obj)calo2_obj->Clear();
250        if(tof_obj)  tof_obj->Clear();
251        if(trig_obj) trig_obj->Clear();
252        if(s4_obj)   s4_obj->Clear();
253        if(nd_obj)   nd_obj->Clear();
254        if(ac_obj)   ac_obj->Clear();
255        if(orb_obj)  orb_obj->Clear();
256        
257    //    if(sorted_tracks)sorted_tracks->Clear();
258    //    sorted_tracks.Clear();
259    
260        if(tsorted){
261            tsorted->Delete();
262        }
263        if(timage){
264            timage->Delete();
265        }
266        
267  };  };
268    
269    
# Line 112  void PamLevel2::Clear(){ Line 271  void PamLevel2::Clear(){
271  //  //
272  //  //
273  //--------------------------------------  //--------------------------------------
274    void *PamLevel2::GetPointerTo(const char* c ){
275    
276        TString objname = c;
277    
278        if(!objname.CompareTo("TrkLevel1"))  {
279            if(!trk1_obj){
280                trk1_obj  = new TrkLevel1();
281                trk1_obj->Set();
282            }
283            return &trk1_obj;
284        };
285        if(!objname.CompareTo("TrkLevel2"))  {
286            if(!trk2_obj){  
287                trk2_obj  = new TrkLevel2();
288                trk2_obj->Set();
289            }
290            return &trk2_obj;
291        };
292        if(!objname.CompareTo("TrkHough"))   {
293            if(!trkh_obj)  trkh_obj  = new TrkHough();
294            return &trkh_obj;
295        };
296        if(!objname.CompareTo("CaloLevel1")) {
297            if(!calo1_obj) calo1_obj = new CaloLevel1();
298            return &calo1_obj;
299        };
300        if(!objname.CompareTo("CaloLevel2")) {
301            if(!calo2_obj){
302                calo2_obj = new CaloLevel2();
303                calo2_obj->Set();
304            };
305            return &calo2_obj;
306        };
307        if(!objname.CompareTo("ToFLevel2"))  {
308            if(!tof_obj){
309                tof_obj   = new ToFLevel2();
310                tof_obj->Set();
311            }
312            return &tof_obj;
313        };
314        if(!objname.CompareTo("TrigLevel2")) {
315            if(!trig_obj)  trig_obj  = new TrigLevel2();
316            return &trig_obj;
317        };
318        if(!objname.CompareTo("S4Level2"))   {
319            if(!s4_obj)    s4_obj    = new S4Level2();
320            return &s4_obj;
321        };
322        if(!objname.CompareTo("NDLevel2"))   {
323            if(!nd_obj)    nd_obj    = new NDLevel2();
324            return &nd_obj;
325        };
326        if(!objname.CompareTo("AcLevel2"))   {
327            if(!ac_obj)    ac_obj    = new AcLevel2();
328            return &ac_obj;
329        };
330        if(!objname.CompareTo("OrbitalInfo")){
331            if(!orb_obj)   orb_obj   = new OrbitalInfo();
332            return &orb_obj;
333        };
334        
335        if(!objname.CompareTo("RunInfo"))return &run_obj;
336    
337        if(!objname.CompareTo("SoftInfo"))return &soft_obj; // Emiliano
338    
339        return NULL;
340    };
341    //--------------------------------------
342    //
343    //
344    //--------------------------------------
345  /**  /**
346   * Retrieves the calorimeter track matching the seqno-th tracker stored track.   * Retrieves the calorimeter track matching the seqno-th tracker stored track.
347   * (If seqno = -1 retrieves the self-trigger calorimeter track)   * (If seqno = -1 retrieves the self-trigger calorimeter track)
348   */   */
349   CaloTrkVar *PamLevel2::GetCaloStoredTrack(int seqno){   CaloTrkVar *PamLevel2::GetCaloStoredTrack(int seqno){
350                
351           if( CaloLevel2::ntrk()==0 ){       if( !calo2_obj )return 0;
                  cout << "PamLevel2::GetCaloStoredTrack(int) : requested tracker SeqNo "<< seqno <<" but no Calorimeter tracks are stored"<<endl;  
                  return NULL;  
          };  
           
          CaloTrkVar *c = 0;  
          Int_t it_calo=0;  
           
          do{  
                  c = CaloLevel2::GetCaloTrkVar(it_calo);  
                  it_calo++;  
          } while( seqno != c->trkseqno && it_calo < CaloLevel2::ntrk());          
           
          if(seqno != c->trkseqno){  
                  c = 0;  
                  if(seqno!=-1)cout << "PamLevel2::GetCaloStoredTrack(int) : requested tracker SeqNo "<< seqno <<" does not match Calorimeter stored tracks"<<endl;  
          };  
          return c;  
352    
353         if( calo2_obj->CaloLevel2::ntrk()==0 ){
354             cout << "PamLevel2::GetCaloStoredTrack(int) : requested tracker SeqNo "<< seqno <<" but no Calorimeter tracks are stored"<<endl;
355             return NULL;
356         };
357        
358         CaloTrkVar *c = 0;
359         Int_t it_calo=0;
360        
361         do{
362             c = calo2_obj->CaloLevel2::GetCaloTrkVar(it_calo);
363             it_calo++;
364         } while( c && seqno != c->trkseqno && it_calo < calo2_obj->CaloLevel2::ntrk());    
365        
366         if(!c || seqno != c->trkseqno){
367             c = 0;
368             if(seqno!=-1)cout << "PamLevel2::GetCaloStoredTrack(int) : requested tracker SeqNo "<< seqno <<" does not match Calorimeter stored tracks"<<endl;
369         };
370         return c;
371        
372   };   };
373  //--------------------------------------  //--------------------------------------
374   //   //
# Line 148  void PamLevel2::Clear(){ Line 380  void PamLevel2::Clear(){
380   */   */
381   ToFTrkVar *PamLevel2::GetToFStoredTrack(int seqno){   ToFTrkVar *PamLevel2::GetToFStoredTrack(int seqno){
382                    
383           if( ToFLevel2::ntrk()==0 ){       if( !tof_obj )return 0;
                  cout << "PamLevel2::GetToFStoredTrack(int) : requested tracker SeqNo "<< seqno <<" but no ToF tracks are stored"<<endl;  
                  return NULL;  
          };  
           
          ToFTrkVar *c = 0;  
          Int_t it_tof=0;  
           
          do{  
                  c = ToFLevel2::GetToFTrkVar(it_tof);  
                  it_tof++;  
          } while( seqno != c->trkseqno && it_tof < ToFLevel2::ntrk());    
           
          if(seqno != c->trkseqno){  
                  c = 0;  
                  if(seqno!=-1)cout << "PamLevel2::GetToFStoredTrack(int) : requested tracker SeqNo "<< seqno <<" does not match ToF stored tracks"<<endl;  
          };  
          return c;  
384    
385         if( tof_obj->ToFLevel2::ntrk()==0 ){
386             cout << "PamLevel2::GetToFStoredTrack(int) : requested tracker SeqNo "<< seqno <<" but no ToF tracks are stored"<<endl;
387             return NULL;
388         };
389        
390         ToFTrkVar *c = 0;
391         Int_t it_tof=0;
392        
393         do{
394             c = tof_obj->ToFLevel2::GetToFTrkVar(it_tof);
395             it_tof++;
396         } while( c && seqno != c->trkseqno && it_tof < tof_obj->ToFLevel2::ntrk());        
397        
398         if(!c || seqno != c->trkseqno){
399             c = 0;
400             if(seqno!=-1)cout << "PamLevel2::GetToFStoredTrack(int) : requested tracker SeqNo "<< seqno <<" does not match ToF stored tracks"<<endl;
401         };
402         return c;
403        
404   };   };
405    
406  //--------------------------------------  //--------------------------------------
# Line 177  void PamLevel2::Clear(){ Line 411  void PamLevel2::Clear(){
411   * Give the pamela track associated to a tracker track, retrieving related calorimeter and tof track information.   * Give the pamela track associated to a tracker track, retrieving related calorimeter and tof track information.
412   */   */
413   PamTrack* PamLevel2::GetPamTrackAlong(TrkTrack* t){   PamTrack* PamLevel2::GetPamTrackAlong(TrkTrack* t){
414                
415           CaloTrkVar *c = 0;       cout <<"PamLevel2::GetPamTrackAlong(TrkTrack* t) **obsolete** "<<endl;
416           ToFTrkVar  *o = 0;       cout <<"(if you use it, remember to delete the PamTrack object)"<<endl;
417            
418           if(CAL) c = GetCaloStoredTrack(t->GetSeqNo());       CaloTrkVar *c = 0;
419           if(TOF) o = GetToFStoredTrack(t->GetSeqNo());       ToFTrkVar  *o = 0;
420                
421         if(CAL2) c = GetCaloStoredTrack(t->GetSeqNo());
422         if(TOF) o = GetToFStoredTrack(t->GetSeqNo());
423        
424  //    if(t && c && o)track = new PamTrack(t,c,o);  //    if(t && c && o)track = new PamTrack(t,c,o);
425           PamTrack *track = new PamTrack(t,c,o);       PamTrack *track = new PamTrack(t,c,o);
426                
427           return track;       return track;
428    
429   };   };
430  //--------------------------------------  //--------------------------------------
# Line 202  void PamLevel2::Clear(){ Line 439  void PamLevel2::Clear(){
439    
440  PamTrack* PamLevel2::GetStoredTrack(Int_t itrk){  PamTrack* PamLevel2::GetStoredTrack(Int_t itrk){
441            
442          PamTrack *track = 0;      cout <<"PamLevel2::GetStoredTrack(Int_t itrk) **to-be-updated** "<<endl;
443        cout <<"for the moment, better use separately the methods: TrkLevel2::GetStoredTrack(seqno) CaloLevel2::GetCaloTrkVar(Int_t notrack) ToFLevel2::GetToFTrkVar(Int_t notrack)"<<endl;
444          if( itrk >=0 && itrk < TrkLevel2::ntrk() ){      cout <<"(if you use it, remember to delete the PamTrack object)"<<endl;
445                        PamTrack *track = 0;
446                  TrkTrack *t = TrkLevel2::GetStoredTrack(itrk);      
447                  track = GetPamTrackAlong(t);      if( itrk >=0 && itrk < trk2_obj->TrkLevel2::ntrk() ){
448            
449            TrkTrack *t = trk2_obj->TrkLevel2::GetStoredTrack(itrk);
450            track = GetPamTrackAlong(t);
451                    
         }else{  
                 cout << "PamLevel2::GetStoredTrack(int) : tracker track SeqNo "<< itrk <<" does not exist (GetNTracks() = "<<TrkLevel2::GetNTracks()<<")"<<endl;  
         };  
   
         return track;  
452                    
453    
454        }else{
455            cout << "PamLevel2::GetStoredTrack(int) : tracker track SeqNo "<< itrk <<" does not exist (GetNTracks() = "<<trk2_obj->TrkLevel2::GetNTracks()<<")"<<endl;
456        };
457        
458        return track;
459        
460  }  }
461  //--------------------------------------  //--------------------------------------
462  //  //
# Line 224  PamTrack* PamLevel2::GetStoredTrack(Int_ Line 466  PamTrack* PamLevel2::GetStoredTrack(Int_
466   * Sort physical (tracker) tracks and stores them in the TRefArray (of TrkTrack objects) which pointer is  PamLevel2::sorted_tracks.   * Sort physical (tracker) tracks and stores them in the TRefArray (of TrkTrack objects) which pointer is  PamLevel2::sorted_tracks.
467   * @param how String to set the sorting cryterium (es: "CAL" or "TRK+CAL+TOF" ecc...).   * @param how String to set the sorting cryterium (es: "CAL" or "TRK+CAL+TOF" ecc...).
468   * Sorting cryteria:   * Sorting cryteria:
469   * TRK: lower chi**2   * TRK: lower chi**2
470   * CAL: lower Y spatial residual on the first calorimeter plane   * CAL: lower Y spatial residual on the first calorimeter plane
471   * TOF: bigger numebr of hit PMTs along the track, on S12 S21 S32 (where paddles are along the Y axis).   * TOF: bigger numebr of hit PMTs along the track, on S12 S21 S32 (where paddles are along the Y axis).
472   * The default sorting cryterium is "TOF+CAL".   * The default sorting cryterium is "TOF+CAL".
# Line 233  PamTrack* PamLevel2::GetStoredTrack(Int_ Line 475  PamTrack* PamLevel2::GetStoredTrack(Int_
475   */   */
476  void PamLevel2::SortTracks(TString how){  void PamLevel2::SortTracks(TString how){
477    
478    //    cout <<" PamLevel2::SortTracks(TString how) "<<endl;
479        if( !trk2_obj ){
480            cout << "void PamLevel2::SortTracks(TString how):  TrkLevel2 not loaded !!!";
481            return;
482        };
483    //    cout << "call SortTracs() "<<endl;
484    //Save current Object count    //Save current Object count
485          Int_t ObjectNumber = TProcessID::GetObjectCount();      Int_t ObjectNumber = TProcessID::GetObjectCount();
486            
487          sorted_tracks->Delete(); //temporaneo???  //    cout << "ObjectNumber  "<<ObjectNumber <<endl;
488            
489    //     if(!sorted_tracks)sorted_tracks = new TRefArray();
490    //     sorted_tracks->Clear();
491    //    sorted_tracks.Clear();
492    
493        if(!tsorted)tsorted = new TClonesArray("PamTrack",trk2_obj->GetNTracks());
494        tsorted->Delete();
495        TClonesArray &ttsorted = *tsorted;
496        if(!timage)timage = new TClonesArray("PamTrack",trk2_obj->GetNTracks());
497        timage->Delete();
498        TClonesArray &ttimage = *timage;
499    
500    
501      // loop over the tracks sorted by the tracker      // loop over the tracks sorted by the tracker
502          Bool_t use_TRK = how.Contains("TRK", TString::kIgnoreCase);      Bool_t use_TRK = how.Contains("TRK", TString::kIgnoreCase);
503          Bool_t use_CAL = how.Contains("CAL", TString::kIgnoreCase);      Bool_t use_CAL = how.Contains("CAL", TString::kIgnoreCase);
504          Bool_t use_TOF = how.Contains("TOF", TString::kIgnoreCase);      Bool_t use_TOF = how.Contains("TOF", TString::kIgnoreCase);
505                
506          if( !CAL &&  use_CAL) use_CAL = false;      if( !CAL2 &&  use_CAL) use_CAL = false;
507          if( !TOF &&  use_TOF) use_TOF = false;      if( !TOF &&  use_TOF) use_TOF = false;
508        
509        if( !TRK2 ){
510    //      cout << "SortTracks() : without tracker does not work!!! (not yet)" << endl;
511            return;
512        };
513    
514        //   cout << "use_CAL "<<use_CAL<<" use_TOF "<<use_TOF<<" use_TRK "<<use_TRK <<endl;
515        
516        for(Int_t i=0; i < trk2_obj->TrkLevel2::GetNTracks(); i++){
517                    
518          if( !TRK ){          TrkTrack   *ts = 0;
519                  cout << "SortTracks() : without tracker does not work!!! (not yet)" << endl;          CaloTrkVar *cs = 0;
520                  return;          ToFTrkVar  *os = 0;
         };  
521                    
         for(Int_t i=0; i < TrkLevel2::GetNTracks(); i++){  
   
                 TrkTrack *ts = 0;  
   
522          // get tracker tracks          // get tracker tracks
523                  TrkTrack   *tp = TrkLevel2::GetTrack(i);                    //tracker          TrkTrack   *tp = trk2_obj->TrkLevel2::GetTrack(i);                    //tracker
524  //              CaloTrkVar *cp = GetCaloStoredTrack(tp->GetSeqNo());          CaloTrkVar *cp = GetCaloStoredTrack(tp->GetSeqNo());
525  //              ToFTrkVar  *op = GetToFStoredTrack(tp->GetSeqNo());          ToFTrkVar  *op = GetToFStoredTrack(tp->GetSeqNo());
526                  CaloTrkVar *cp = 0;  
527                  ToFTrkVar  *op = 0;          TrkTrack   *ti = 0;              //tracker (image)
528            CaloTrkVar *ci = 0;
529            ToFTrkVar  *oi = 0;
530    //      cout << "trk track n. "<<i << " "<<hex<< tp <<dec<< endl;
531          // if track has an image, check image selection          // if track has an image, check image selection
532                  if(tp->HasImage()){          if(tp->HasImage()){
533                                        
534                          TrkTrack   *ti = TrkLevel2::GetTrackImage(i);              //tracker (image)              ti = trk2_obj->TrkLevel2::GetTrackImage(i);              //tracker (image)
535  //                      CaloTrkVar *ci = GetCaloStoredTrack(ti->GetSeqNo());              ci = GetCaloStoredTrack(ti->GetSeqNo());
536  //                      ToFTrkVar  *oi = GetToFStoredTrack(ti->GetSeqNo());              oi = GetToFStoredTrack(ti->GetSeqNo());
537                          CaloTrkVar *ci = 0;              
538                          ToFTrkVar  *oi = 0;  //          cout << "its image "<<i << " "<<hex<< ti <<dec<< endl;
539    
540              //assign starting scores              //assign starting scores
541                          Int_t tp_score = 0;  //main track sorted by the tracker              Int_t tp_score = 0;  //main track sorted by the tracker
542                          Int_t ti_score = 0;  //image track              Int_t ti_score = 0;  //image track
543                                                                
544              // ------------------------              // ------------------------
545              // calorimeter check              // calorimeter check
546              // ------------------------              // ------------------------
547                  // check the Y spatial residual on the first calorimeter plane              // check the Y spatial residual on the first calorimeter plane
548                  // (cut on calorimeter variables from Emiliano)              // (cut on calorimeter variables from Emiliano)
549                          if(              if( use_CAL && !calo2_obj ){
550                                  use_CAL            &&                  cout << "void PamLevel2::SortTracks(TString how): how= "<<how<<" but CaloLevel2 not loaded !!!";
551                                  npcfit[1] > 15     &&   //no. of fit planes on Y view                  return;
552                                  varcfit[1] < 1000. &&  //fit variance on Y view              };
553                                  true){              if(
554                    use_CAL            &&
555                                  cp = GetCaloStoredTrack(tp->GetSeqNo());                  calo2_obj->npcfit[1] > 15     &&   //no. of fit planes on Y view
556                                  ci = GetCaloStoredTrack(ti->GetSeqNo());                  calo2_obj->varcfit[1] < 1000. &&  //fit variance on Y view
557                                                    true){
558                                  Float_t resy_p = cp->tbar[0][1] - cbar[0][1]; if(resy_p < 0)resy_p= - resy_p;  
559                                  Float_t resy_i = ci->tbar[0][1] - cbar[0][1]; if(resy_i < 0)resy_i= - resy_i;                  
560                    Float_t resy_p = cp->tbar[0][1] - calo2_obj->cbar[0][1]; if(resy_p < 0)resy_p= - resy_p;
561                                  if(resy_p <= resy_i) tp_score++;                  Float_t resy_i = ci->tbar[0][1] - calo2_obj->cbar[0][1]; if(resy_i < 0)resy_i= - resy_i;
562                                  else                 ti_score++;                  
563                          };                  if(resy_p <= resy_i) tp_score++;
564                    else                 ti_score++;
565    
566    //              cout << "CALO "<<tp_score<<ti_score<<endl;
567    
568                };
569              // ------------------------              // ------------------------
570              // TOF check              // TOF check
571              // ------------------------                  // ------------------------    
572                  // check the number of hit pmts along the track              // check the number of hit pmts along the track
573                  // on S12 S21 and S32, where paddles are parallel to Y axis              // on S12 S21 and S32, where paddles are parallel to Y axis
574                          if( use_TOF ){              if( use_TOF && !tof_obj ){
575                                            cout << "void PamLevel2::SortTracks(TString how): how= "<<how<<" but ToFLevel2 not loaded !!!";
576                                  Int_t nphit_p =0;                  return;
577                                  Int_t nphit_i =0;              };
578                                                        if( use_TOF ){
579                                  op = GetToFStoredTrack(tp->GetSeqNo());                  
580                                  oi = GetToFStoredTrack(ti->GetSeqNo());                  Int_t nphit_p =0;
581                                                    Int_t nphit_i =0;
582                    
583                    
584  /*                              cout << "track: npmtadc "<< op->npmtadc << endl;  /*                              cout << "track: npmtadc "<< op->npmtadc << endl;
585                                  cout << "track: npmttdc "<< op->npmttdc << endl;                                  cout << "track: npmttdc "<< op->npmttdc << endl;
586                                  cout << "image: npmtadc "<< oi->npmtadc << endl;                                  cout << "image: npmtadc "<< oi->npmtadc << endl;
587                                  cout << "image: npmttdc "<< oi->npmttdc << endl;*/                                  cout << "image: npmttdc "<< oi->npmttdc << endl;*/
588                                                    
589                                  for (Int_t ih=0; ih < op->npmtadc; ih++){                  for (Int_t ih=0; ih < op->npmtadc; ih++){
590                                          Int_t pl = GetPlaneIndex( (op->pmtadc).At(ih) );                      Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) );
591                                          if(pl == 1 || pl == 2 || pl == 5)nphit_p++;                      if(pl == 1 || pl == 2 || pl == 5)nphit_p++;
592                                  };                  };
593                                                                            
594                                  for (Int_t ih=0; ih < oi->npmtadc; ih++){                  for (Int_t ih=0; ih < oi->npmtadc; ih++){
595                                          Int_t pl = GetPlaneIndex( (oi->pmtadc).At(ih) );                      Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) );
596                                          if(pl == 1 || pl == 2 || pl == 5)nphit_i++;                          if(pl == 1 || pl == 2 || pl == 5)nphit_i++;
597                                  };                  };
598                                                    
599                                  if(                  if(
600                                          use_TOF            &&                      use_TOF            &&
601                                          (nphit_p+nphit_i) !=0 &&                              (nphit_p+nphit_i) !=0 &&    
602                                          true){                      true){
603                                                                
604                                          if( nphit_p >= nphit_i) tp_score++;                      if( nphit_p >= nphit_i) tp_score++;
605                                          else                                              ti_score++;                      else ti_score++;
606                                  };                  };
607                          };  //              cout << "TOF "<<tp_score<<ti_score<<endl;
608                          if(tp_score == ti_score) use_TRK = true;              };
609                  // ------------------------              if(tp_score == ti_score) use_TRK = true;
610                // ------------------------
611              // tracker check              // tracker check
612              // ------------------------              // ------------------------
613                  // chi**2 difference is not always large enough to distinguish among              // chi**2 difference is not always large enough to distinguish among
614                  // the real track and its image.              // the real track and its image.
615                  // Tracker check will be applied always when calorimeter and tof information is ambiguous.              // Tracker check will be applied always when calorimeter and tof information is ambiguous.
616                          if(use_TRK){              if(use_TRK){
617                                  if(      tp->chi2 > 0 && tp->chi2 < ti->chi2 ) tp_score++ ;                  if(      tp->chi2 > 0 && tp->chi2 < ti->chi2 ) tp_score++ ;
618                                  else if( ti->chi2 > 0 && ti->chi2 < tp->chi2 ) ti_score++ ;                  else if( ti->chi2 > 0 && ti->chi2 < tp->chi2 ) ti_score++ ;
619                          };  //              cout << "TRK "<<tp_score<<ti_score<<endl;
620                };
621                
622              // ------------------------              // ------------------------
623              // the winner is....              // the winner is....
624              // ------------------------                  // ------------------------    
625                          if      (tp_score > ti_score) ts = tp;//the track sorted by the tracker!!              if      (tp_score > ti_score) {
626                          else if (tp_score < ti_score) ts = ti;//its image!!  //              ts = tp;//the track sorted by the tracker!!
627                          else {  //              cs = cp;
628                                  ts = tp;  //              os = op;
629  //                              cout << "Warning - track image ambiguity not solved" << endl;              }else if (tp_score < ti_score) {
630  //                              cout << ts->GetNtot() << " "<< ts->chi2 << " " << npcfit[1] << " "<< nphit_p << endl;                  ts = ti;//its image!!
631                          };                  cs = ci;
632                    os = oi;
633    
634                    ti = tp;//its image!!
635                    ci = cp;
636                    oi = op;
637    
638                    tp = ts;//its image!!
639                    cp = cs;
640                    op = os;
641    
                 }else{  
                         ts = tp;  
                 };  
                   
 //              cout <<" SortTracks() "<<i<<" -- "<<ts<<endl;  
                 sorted_tracks->Add(ts);//save the track in the sorted array  
 //              cout << "SortTracks:: sorted_tracks->Add(it) "<<i<<" "<<ts<<endl;  
642                                    
643                }else {
644    //              ts = tp;
645    //              cs = cp;
646    //              os = op;
647    //                              cout << "Warning - track image ambiguity not solved" << endl;
648    //                              cout << ts->GetNtot() << " "<< ts->chi2 << " " << npcfit[1] << " "<< nphit_p << endl;
649                };
650                
651            }else{
652    //          ts = tp;
653    //          cs = cp;
654    //          os = op;
655          };          };
656    //Restore Object count          
657    //To save space in the table keeping track of all referenced objects  //      cout <<" SortTracks() "<<i<<" -- "<<ts<<endl;
658    //we assume that our events do not address each other. We reset the  //      sorted_tracks->Add(ts);//save the track in the sorted array
659    //object count to what it was at the beginning of the event.  //      sorted_tracks.Add(ts);//save the track in the sorted array
660          TProcessID::SetObjectCount(ObjectNumber);  //      sorted_tracks.Add(tp);//save the track in the sorted array
661    //      cout << "SortTracks:: sorted_tracks->Add(it) "<<i<<" "<<ts<<endl;
662    //      cout<<"o "<<tp<<endl;
663    //      cout<<"o "<<cp<<endl;
664    //      cout<<"o "<<op<<endl;
665            new(ttsorted[i]) PamTrack(tp,cp,op);
666            new(ttimage[i])  PamTrack(ti,ci,oi);
667        };
668    
669        if( tsorted->GetEntries() != trk2_obj->GetNTracks() ){
670            cout << "void PamLevel2::SortTracks(TString how): tsorted->GetEntries() "<<tsorted->GetEntries()<<" != trk2_obj->GetNTracks() = "<<trk2_obj->GetNTracks() <<endl;
671            tsorted->Delete(); tsorted=0;
672            timage->Delete(); timage=0;    
673        }
674    
675        //Restore Object count
676        //To save space in the table keeping track of all referenced objects
677        //We reset the object count to what it was at the beginning of the event.
678        TProcessID::SetObjectCount(ObjectNumber);
679        
680  };  };
681  //--------------------------------------  //--------------------------------------
682  //  //
# Line 379  void PamLevel2::SortTracks(TString how){ Line 686  void PamLevel2::SortTracks(TString how){
686   * This method overrides TrkLevel2::GetTracks(), where sorting is done by decreasing number of fit points and increasing chi^2.   * This method overrides TrkLevel2::GetTracks(), where sorting is done by decreasing number of fit points and increasing chi^2.
687   * PamLevel2::GetTracks() keeps the same track order given by TrkLevel2::GetTracks(), but checks image selection by using calorimeter and ToF tracking information.   * PamLevel2::GetTracks() keeps the same track order given by TrkLevel2::GetTracks(), but checks image selection by using calorimeter and ToF tracking information.
688   */   */
689   TRefArray *PamLevel2::GetTracks(){  // TRefArray *PamLevel2::GetTracks(){
690           //  
691  //      SortTracks("+CAL+TOF");  // //  *-*-*-*-*-*-*-*-*-*-*-*-*
692           SortTracks("+CAL+TRK");//TEMP!!!!!!!!!!!!!  //     SortTracks("+CAL+TOF");
693          //  // //  *-*-*-*-*-*-*-*-*-*-*-*-*
694          return sorted_tracks;  
695    // //   return  sorted_tracks;
696    //     return &sorted_tracks;
697        
698    //  };
699    TClonesArray *PamLevel2::GetTracks(){
700    
701    //  *-*-*-*-*-*-*-*-*-*-*-*-*
702        SortTracks("+CAL+TOF");
703    //  *-*-*-*-*-*-*-*-*-*-*-*-*
704    
705        return tsorted;
706        
707   };   };
708  //--------------------------------------  //--------------------------------------
709   //   //
# Line 396  void PamLevel2::SortTracks(TString how){ Line 715  void PamLevel2::SortTracks(TString how){
715   * @param it Track number, ranging from 0 to GetNTracks().   * @param it Track number, ranging from 0 to GetNTracks().
716   */   */
717  PamTrack *PamLevel2::GetTrack(int it){  PamTrack *PamLevel2::GetTrack(int it){
718    
719    //    if(!trk2_obj) return 0;
720                    
721  //  *-*-*-*-*-*-*  // //  *-*-*-*-*-*-*-*-*-*-*-*-*
722  //      SortTracks("+CAL+TOF");  //     SortTracks("+CAL+TOF");
723          SortTracks("+CAL+TRK");//TEMP!!!!!!!!!!!!!  // //  *-*-*-*-*-*-*-*-*-*-*-*-*
724  //  *-*-*-*-*-*-*  // //    if(!sorted_tracks)return 0;
725    //     if(sorted_tracks.IsEmpty())return 0;
726          PamTrack *track = 0;  
727            //     PamTrack *track = 0;
728          if( it >=0 && it < TrkLevel2::GetNTracks() ){      
729                  TrkTrack   *t = (TrkTrack*)sorted_tracks->At(it);  //     if( it >=0 && it < trk2_obj->TrkLevel2::GetNTracks() && it<sorted_tracks.GetEntriesFast() ){    
730  //              cout << "GetTrack(int it):: sorted_tracks->At(it) "<<it<<" "<<t<<endl;  //      TrkTrack   *t = (TrkTrack*)sorted_tracks.At(it);
731                  track = GetPamTrackAlong(t);  //      track = GetPamTrackAlong(t);
732          }else{  //     }else{
733                  cout << "PamLevel2::GetTrack(int) : tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<TrkLevel2::GetNTracks()<<")"<<endl;  //      cout << "PamLevel2::GetTrack(int) : tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<trk2_obj->TrkLevel2::GetNTracks()<<")"<<endl;
734          };  //     };
735                
736          return track;  //     return track;
737    
738    //    cout << "PamLevel2::GetTrack(int it) "<<endl;
739    //  *-*-*-*-*-*-*-*-*-*-*-*-*
740        SortTracks("+CAL+TOF");
741    //  *-*-*-*-*-*-*-*-*-*-*-*-*
742        if(!tsorted)return 0;
743        if(!tsorted->GetEntries())return 0;
744    
745        PamTrack *track = 0;
746        
747        if( it >=0 && it < trk2_obj->TrkLevel2::GetNTracks()){
748    //      TrkTrack   *t = (TrkTrack*)sorted_tracks.At(it);
749    //      track = GetPamTrackAlong(t);
750            TClonesArray &t = *(tsorted);
751            track = (PamTrack*)t[it];
752            
753        }else{
754            cout << "PamLevel2::GetTrack(int) : tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<trk2_obj->TrkLevel2::GetNTracks()<<")"<<endl;
755        };
756        
757        return track;
758        
759  };  };
760    
761  //--------------------------------------  //--------------------------------------
# Line 426  PamTrack *PamLevel2::GetTrack(int it){ Line 768  PamTrack *PamLevel2::GetTrack(int it){
768   */   */
769  PamTrack *PamLevel2::GetTrackImage(int it){  PamTrack *PamLevel2::GetTrackImage(int it){
770    
771  //      SortTracks("+CAL+TOF");  //     if(!trk2_obj) return 0;
         SortTracks("+CAL+TRK");//TEMP!!!!!!!!!!!!!  
           
         PamTrack *image = 0;  
772    
773          if( it >=0 && it < TrkLevel2::GetNTracks() ){  // //  *-*-*-*-*-*-*-*-*-*-*-*-*
774                  TrkTrack *temp = (TrkTrack*)sorted_tracks->At(it);  //     SortTracks("+CAL+TOF");
775                  if( temp->HasImage() ){  // //  *-*-*-*-*-*-*-*-*-*-*-*-*
776                          TrkTrack   *t = TrkLevel2::GetStoredTrack(temp->GetImageSeqNo());  // //    if(!sorted_tracks)return 0;
777                          image = GetPamTrackAlong(t);  //     if(sorted_tracks.IsEmpty())return 0;
778                  }else{      
779                          cout <<"PamLevel2::GetTrackImage(int) : Track SeqNo "<<it<<" does not have image"<<endl;  //     PamTrack *image = 0;
780                  };      
781    //     if( it >=0 && it < trk2_obj->TrkLevel2::GetNTracks() ){
782    //      TrkTrack *temp = (TrkTrack*)sorted_tracks.At(it);
783    //      if( temp->HasImage() ){
784    //          TrkTrack   *t = trk2_obj->TrkLevel2::GetStoredTrack(temp->GetImageSeqNo());
785    //          image = GetPamTrackAlong(t);
786    //      }else{
787    //          cout <<"PamLevel2::GetTrackImage(int) : Track SeqNo "<<it<<" does not have image"<<endl;
788    //      };
789    //     }else{
790    //      cout << "PamLevel2::GetTrackImage(int) : Tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<trk2_obj->TrkLevel2::GetNTracks()<<")"<<endl;
791    //     };
792        
793    //     return image;
794    
795    
796    //  *-*-*-*-*-*-*-*-*-*-*-*-*
797        SortTracks("+CAL+TOF");
798    //  *-*-*-*-*-*-*-*-*-*-*-*-*
799        if(!timage)return 0;
800        if(!timage->GetEntries())return 0;
801        
802        PamTrack *image = 0;
803        
804        if( it >=0 && it < trk2_obj->TrkLevel2::GetNTracks() ){
805            TClonesArray &t = *(tsorted);
806            PamTrack *temp = (PamTrack*)t[it];
807            if( temp->GetTrkTrack()->HasImage() ){
808                TClonesArray &t = *(timage);
809                image = (PamTrack*)t[it];
810          }else{          }else{
811                  cout << "PamLevel2::GetTrackImage(int) : Tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<TrkLevel2::GetNTracks()<<")"<<endl;  //          cout <<"PamLevel2::GetTrackImage(int) : Track SeqNo "<<it<<" does not have image"<<endl;
812          };          };
813        }else{
814            cout << "PamLevel2::GetTrackImage(int) : Tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<trk2_obj->TrkLevel2::GetNTracks()<<")"<<endl;
815        };
816            
817          return image;      return image;
818  }  }
819    
820  //--------------------------------------  //--------------------------------------
# Line 456  PamTrack *PamLevel2::GetTrackImage(int i Line 827  PamTrack *PamLevel2::GetTrackImage(int i
827   * @param detlist String to select trees to be included   * @param detlist String to select trees to be included
828   * @return Pointer to a TTree   * @return Pointer to a TTree
829   */   */
830  TTree *PamLevel2::GetPamTree(TFile *f, TString detlist="+ALL"){  TTree *PamLevel2::GetPamTree(TFile *f, TString detlist ){
831    
832    //     if( !detlist.IsNull() ) SetWhichTrees(detlist);
833    //     else                    GetWhichTrees(f);
834        
835        cout << "TTree *PamLevel2::GetPamTree(TFile *f, TString detlist ) -- obsolte "<<endl;
836    
837        SetWhichTrees(detlist);
838    
839        TTree *Trout =0;
840    
841        TString fname = f->GetName();
842        if(!CheckLevel2File(fname))return NULL;
843    
844    //    UInt_t *found=0;    
845    
846        cout<< "GetPamTree(TFile*,TString): detector list --> ";
847        if(TRK1)cout<<"TRK1 ";
848        if(TRK2)cout<<"TRK2 ";
849        if(TRKh)cout<<"TRKH ";
850        if(CAL1)cout<<"CAL1 ";
851        if(CAL2)cout<<"CAL2 ";
852        if(TOF)cout<<"TOF ";
853        if(TRG)cout<<"TRG ";
854        if(AC)cout<<"AC ";
855        if(ND)cout<<"ND ";
856        if(S4)cout<<"S4 ";
857        if(ORB)cout<<"ORB ";
858        cout << endl;
859        if(SELLI)cout<<">>> Found selection-list <<<"<<endl;
860    
861        f->cd();
862    
 //      cout << "WARNING!!! -- obsolete method -- \n";  
 //      cout << "better use TChain *PamLevel2::GetPamTree(TList*, TString) \n";  
           
         TTree *Trout =0;  
           
         SetWhichTrees(detlist);  
863  // Tracker  // Tracker
864      TTree *T = (TTree*)f->Get("Tracker");      TTree *T = (TTree*)f->Get("Tracker");
865      if(T && TRK) {      if(T && (TRK2||TRK1||TRKh)) {
866                  if(TRK_L1){          if(TRK2)T->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2"));
867                          T->SetBranchAddress("TrkLevel1", GetPointerToTrk(1));  //      else    T->SetBranchStatus("TrkLevel2",0,found);
868                          cout << "Tracker      : set branch address TrkLevel1"<<endl;          if(TRK2)cout << "Tracker      : set branch address TrkLevel2"<<endl;
869                  };          if(TRK1)T->SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1"));
870                  T->SetBranchAddress("TrkLevel2", GetPointerToTrk(2));  //      else    T->SetBranchStatus("TrkLevel1",0,found);
871                  cout << "Tracker      : set branch address TrkLevel2"<<endl;          if(TRK1)cout << "Tracker      : set branch address TrkLevel1"<<endl;
872                  Trout=T;          if(TRKh)T->SetBranchAddress("TrkHough", GetPointerTo("TrkHough"));
873    //      else    T->SetBranchStatus("TrkHough",0,found);
874            if(TRKh)cout << "Tracker      : set branch address TrkHough"<<endl;
875            if(!Trout)Trout=T;
876            else Trout->AddFriend(T);
877      }else{      }else{
878          cout << "Tracker      : missing tree"<<endl;          cout << "Tracker      : missing tree"<<endl;
879      };      };
880      // Calorimeter      // Calorimeter
881      TTree *C = (TTree*)f->Get("Calorimeter");      TTree *C = (TTree*)f->Get("Calorimeter");
882      if(C && CAL) {      if(C && (CAL2||CAL1)) {
883          C->SetBranchAddress("CaloLevel2", GetPointerToCalo());          if(CAL2)C->SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2"));
884          cout << "Calorimeter  : set branch address CaloLevel2"<<endl;  //      else    C->SetBranchStatus("CaloLevel2",0,found);
885            if(CAL2)cout << "Calorimeter  : set branch address CaloLevel2"<<endl;
886            if(CAL1)C->SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1"));
887    //      else    C->SetBranchStatus("CaloLevel1",0,found);
888            if(CAL1)cout << "Calorimeter  : set branch address CaloLevel1"<<endl;
889          if(!Trout)Trout=C;          if(!Trout)Trout=C;
890          else Trout->AddFriend(C);          else Trout->AddFriend(C);
891      }else{      }else{
892          cout << "Calorimeter  : missing tree"<<endl;          cout << "Calorimeter  : missing tree"<<endl;
893      };      };
894    
895      // ToF          // ToF    
896      TTree *O = (TTree*)f->Get("ToF");      TTree *O = (TTree*)f->Get("ToF");
897      if(O && TOF) {      if(O && TOF) {
898          O->SetBranchAddress("ToFLevel2", GetPointerToToF());          O->SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2"));
899          cout << "ToF          : set branch address ToFLevel2"<<endl;          cout << "ToF          : set branch address ToFLevel2"<<endl;
900          if(!Trout)Trout=O;          if(!Trout)Trout=O;
901          else Trout->AddFriend(O);          else Trout->AddFriend(O);
# Line 500  TTree *PamLevel2::GetPamTree(TFile *f, T Line 905  TTree *PamLevel2::GetPamTree(TFile *f, T
905      // Trigger      // Trigger
906      TTree *R = (TTree*)f->Get("Trigger");      TTree *R = (TTree*)f->Get("Trigger");
907      if(R && TRG) {      if(R && TRG) {
908          R->SetBranchAddress("TrigLevel2", GetPointerToTrig());          R->SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2"));
909          cout << "Trigger      : set branch address TrigLevel2"<<endl;          cout << "Trigger      : set branch address TrigLevel2"<<endl;
910          if(!Trout)Trout=O;          if(!Trout)Trout=O;
911          else Trout->AddFriend(R);          else Trout->AddFriend(R);
# Line 510  TTree *PamLevel2::GetPamTree(TFile *f, T Line 915  TTree *PamLevel2::GetPamTree(TFile *f, T
915      // S4      // S4
916      TTree *S = (TTree*)f->Get("S4");      TTree *S = (TTree*)f->Get("S4");
917      if(S && S4) {      if(S && S4) {
918          S->SetBranchAddress("S4Level2", GetPointerToS4());          S->SetBranchAddress("S4Level2", GetPointerTo("S4Level2"));
919          cout << "S4           : set branch address S4Level2"<<endl;          cout << "S4           : set branch address S4Level2"<<endl;
920          if(!Trout)Trout=O;          if(!Trout)Trout=O;
921          else Trout->AddFriend(S);          else Trout->AddFriend(S);
# Line 520  TTree *PamLevel2::GetPamTree(TFile *f, T Line 925  TTree *PamLevel2::GetPamTree(TFile *f, T
925      // Neutron Detector      // Neutron Detector
926      TTree *N = (TTree*)f->Get("NeutronD");      TTree *N = (TTree*)f->Get("NeutronD");
927      if(N && ND) {      if(N && ND) {
928          N->SetBranchAddress("NDLevel2", GetPointerToND());          N->SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2"));
929          cout << "NeutronD     : set branch address NDLevel2"<<endl;          cout << "NeutronD     : set branch address NDLevel2"<<endl;
930          if(!Trout)Trout=O;          if(!Trout)Trout=O;
931          else Trout->AddFriend(N);          else Trout->AddFriend(N);
# Line 530  TTree *PamLevel2::GetPamTree(TFile *f, T Line 935  TTree *PamLevel2::GetPamTree(TFile *f, T
935      // Anticounters      // Anticounters
936      TTree *A = (TTree*)f->Get("Anticounter");      TTree *A = (TTree*)f->Get("Anticounter");
937      if(A && AC) {      if(A && AC) {
938          A->SetBranchAddress("AcLevel2", GetPointerToAc());          A->SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2"));
939          cout << "Anticounter  : set branch address AcLevel2"<<endl;          cout << "Anticounter  : set branch address AcLevel2"<<endl;
940          if(!Trout)Trout=O;          if(!Trout)Trout=O;
941          else Trout->AddFriend(A);          else Trout->AddFriend(A);
# Line 538  TTree *PamLevel2::GetPamTree(TFile *f, T Line 943  TTree *PamLevel2::GetPamTree(TFile *f, T
943          cout << "Anticounter  : missing tree"<<endl;          cout << "Anticounter  : missing tree"<<endl;
944      };      };
945      // Orbital Info      // Orbital Info
946          TTree *B = (TTree*)f->Get("OrbitalInfo");      TTree *B = (TTree*)f->Get("OrbitalInfo");
947          if(B && ORB) {      if(B && ORB) {
948                  B->SetBranchAddress("OrbitalInfo", GetPointerToOrb());          B->SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo"));
949                  cout << "OrbitalInfo  : set branch address OrbitalInfo"<<endl;          cout << "OrbitalInfo  : set branch address OrbitalInfo"<<endl;
950                  if(!Trout)Trout=O;          if(!Trout)Trout=O;
951                  else Trout->AddFriend(B);          else Trout->AddFriend(B);
952          }else{      }else{
953                  cout << "OrbitalInfo  : missing tree"<<endl;          cout << "OrbitalInfo  : missing tree"<<endl;
954          };      };
955    
956        TTree *L = (TTree*)f->Get("SelectionList");
957        if(L && SELLI==1) {
958    //      L->SetBranchAddress("RunEntry",&irun);
959    //      cout << "SelectionList: set branch address RunEntry"<<endl;
960    //      L->SetBranchAddress("EventEntry",&irunentry);
961    //      cout << "SelectionList: set branch address EventEntry"<<endl;
962    //      if(!Trout)Trout=O;
963    //      else Trout->AddFriend("SelectionList");
964            cout << " TTree *PamLevel2::GetPamTree(TFile, TString) >>> SelectionList not implemente!!!!"<<endl;
965            sel_tree = 0;
966        }else{
967            cout << "SelectionList  : missing tree"<<endl;
968        };
969            
970          cout<<endl<<" Number of entries: "<<Trout->GetEntries()<<endl<<endl;      cout<<endl<<" Number of entries: "<<Trout->GetEntries()<<endl<<endl;
971                
972          return Trout;      pam_tree = (TChain*)Trout;
973    
974        return Trout;
975            
976  }  }
977  //--------------------------------------  //--------------------------------------
# Line 566  TTree *PamLevel2::GetPamTree(TFile *f, T Line 987  TTree *PamLevel2::GetPamTree(TFile *f, T
987   */   */
988  TList*  PamLevel2::GetListOfLevel2Files(TString ddir, TString flisttxt = ""){  TList*  PamLevel2::GetListOfLevel2Files(TString ddir, TString flisttxt = ""){
989                    
990          TString wdir = gSystem->WorkingDirectory();          TString wdir = gSystem->WorkingDirectory();
991                
992          if(ddir=="")ddir = wdir;      if(ddir=="")ddir = wdir;
993  //      TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir);  //      TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir);
994          cout << "Level2 data directory : "<<  ddir << endl;      cout << "Level2 data directory : "<<  ddir << endl;
995                        
996          TList *contents  = new TList; // create output list      TList *contents  = new TList; // create output list
997          contents->SetOwner();      contents->SetOwner();
998        
999    //    char *fullpath;
1000    //    const char *fullpath;
1001        
1002        // if no input file list is given:  
1003        if ( flisttxt != "" ){
1004                    
1005          char *fullpath;  //      if( !gSystem->IsFileInIncludePath(flisttxt,&fullpath) ){        
1006                    //      if( !(fullpath = gSystem->FindFile("./",flisttxt)) ){
1007          // if no input file list is given:        //          cout <<"File "<<flisttxt<<" not found"<<endl;
1008          if ( flisttxt != "" ){  //          return 0;
1009                                    //      }      
1010                  if( !gSystem->IsFileInIncludePath(flisttxt,&fullpath) )return 0;  //      flisttxt = fullpath;
1011                    
1012  //              flisttxt = gSystem->ConcatFileName(gSystem->DirName(flisttxt),gSystem->BaseName(flisttxt));          flisttxt = gSystem->ConcatFileName(gSystem->DirName(flisttxt),gSystem->BaseName(flisttxt));
1013                  flisttxt = fullpath;  
1014                            if( !gSystem->ChangeDirectory(ddir) ){
1015                  if( !gSystem->ChangeDirectory(ddir) )return 0;              cout << "Cannot change directory : "<<ddir<<endl;
1016                return 0;
1017            }
1018                    
1019                  cout <<"Input file list : " << flisttxt <<endl;          cout <<"Input file list : " << flisttxt <<endl;
1020                  ifstream in;          ifstream in;
1021                  in.open(flisttxt, ios::in); //open input file list          in.open(flisttxt, ios::in); //open input file list
1022                  while (1) {          if(!in.good()){
1023                          TString file;              cout <<" ERROR opening the file "<<endl;
1024                          in >> file;              gSystem->ChangeDirectory(wdir); // back to the working directory
1025                          if (!in.good()) break;              return 0;
1026                          if( gSystem->IsFileInIncludePath(file,&fullpath) ){          }      
1027  //                              contents->Add(new TSystemDirectory(fullpath,ddir)); // add file to the list          int line=0;
1028  //                              contents->Add(new TSystemFile(fullpath,ddir)); // add file to the list          while (1) {
1029                                  contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));// add file to the list              TString file;
1030                          }else{              in >> file;
1031                                  cout << "warning! --- File "<<file<<" does not exists"<< endl;              if (!in.good()) break;
1032                          };              line++;
1033                  };  //          cout <<"(1) " << file << endl;
1034                  in.close();              if(file.IsNull()){
1035                                    cout << "-- list interrupted at line "<<line <<endl;
1036          }else{                  break;
1037                }
1038                if(file.Contains("#"))file = file(0,file.First("#"));
1039    //          cout <<"(2) " << file << endl;
1040    //          if( gSystem->IsFileInIncludePath(file,&fullpath) ){
1041    //          if( (fullpath = gSystem->FindFile(ddir,file)) ){
1042                if( file.EndsWith(".root") ){
1043                    char *fullpath = gSystem->ConcatFileName(gSystem->DirName(ddir),gSystem->BaseName(file));
1044                    contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));// add file to the list
1045                    delete fullpath;
1046                }
1047    //          }else{
1048    //              if(file.Data()!="")cout << "File: "<<file<<" ---> missing "<< endl;
1049    //          };
1050            };
1051            in.close();
1052            
1053        }else{
1054                    
1055                  cout << "No input file list given."<<endl;          cout << "No input file list given."<<endl;
1056                  cout << "Check for existing root files."<<endl;          cout << "Check for existing root files."<<endl;
1057  //              cout << "Warking directory: "<< gSystem->WorkingDirectory()<< endl;  //              cout << "Warking directory: "<< gSystem->WorkingDirectory()<< endl;
1058                            
1059                  TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir);          TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir);
1060                  TList *temp = datadir->GetListOfFiles();          TList *temp = datadir->GetListOfFiles();
1061  //              temp->Print();  //              temp->Print();
1062  //              cout << "*************************************" << endl;  //              cout << "*************************************" << endl;
                   
                 TIter next(temp);  
                 TSystemFile *questo = 0;  
                   
                   
                 while ( (questo = (TSystemFile*) next()) ) {  
                         TString name =  questo-> GetName();  
                         if( name.EndsWith(".root") ){  
                                 char *fullpath;  
                                 gSystem->IsFileInIncludePath(name,&fullpath);  
                                 contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));  
                         };  
                 }  
                 delete temp;  
                 delete datadir;  
1063                    
1064          };          TIter next(temp);
1065          gSystem->ChangeDirectory(wdir); // back to the working directory          TSystemFile *questo = 0;
1066            
1067            
1068            while ( (questo = (TSystemFile*) next()) ) {
1069                TString name =  questo-> GetName();
1070                if( name.EndsWith(".root") ){
1071    //              const char *fullpath = gSystem->FindFile(ddir,name);
1072    //              char *fullpath;
1073    //              gSystem->IsFileInIncludePath(name,&fullpath);
1074                    char *fullpath = gSystem->ConcatFileName(gSystem->DirName(ddir),gSystem->BaseName(name));
1075                    contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));
1076                    delete fullpath;
1077                };
1078            }
1079            delete temp;
1080            delete datadir;
1081            
1082        };
1083        gSystem->ChangeDirectory(wdir); // back to the working directory
1084  //      cout << endl << "Selected files:" << endl;  //      cout << endl << "Selected files:" << endl;
1085  //      contents->Print();  //      contents->Print();
1086          cout << contents->GetEntries()<<" files selected\n";      cout << contents->GetEntries()<<" files \n";
1087  //      cout << endl;  //      cout << endl;
1088  //      cout << "Working directory: "<< gSystem->WorkingDirectory()<< endl;  //      cout << "Working directory: "<< gSystem->WorkingDirectory()<< endl;
1089          return contents;      return contents;
1090  };  };
1091  //--------------------------------------  //--------------------------------------
1092  //  //
# Line 649  TList*  PamLevel2::GetListOfLevel2Files( Line 1098  TList*  PamLevel2::GetListOfLevel2Files(
1098   * @param detlist String to select trees to be included   * @param detlist String to select trees to be included
1099   * @return Pointer to a TChain   * @return Pointer to a TChain
1100   */   */
1101  TChain *PamLevel2::GetPamTree(TList *fl, TString detlist="+ALL"){  TChain *PamLevel2::GetPamTree(TList *fl, TString detlist ){
1102        
1103        TChain *Trout =0;
1104    
1105  //      TChain *Tout=0;  //    if( !detlist.IsNull() )SetWhichTrees(detlist);
1106          if(Tout)Tout->Delete();      SetWhichTrees(detlist);
1107          Tout = NULL;      
1108                cout<< "GetPamTree(TList*,TString): input detector list --> ";
1109          SetWhichTrees(detlist);      if(TRK1)cout<<"TRK1 ";
1110                if(TRK2)cout<<"TRK2 ";
1111          TChain *T = 0;        if(TRKh)cout<<"TRKH ";
1112          TChain *C = 0;      if(CAL1)cout<<"CAL1 ";
1113          TChain *O = 0;      if(CAL2)cout<<"CAL2 ";
1114          TChain *R = 0;      if(TOF)cout<<"TOF ";
1115          TChain *S = 0;      if(TRG)cout<<"TRG ";
1116          TChain *N = 0;      if(AC)cout<<"AC ";
1117          TChain *A = 0;      if(ND)cout<<"ND ";
1118          TChain *B = 0;      if(S4)cout<<"S4 ";
1119                if(ORB)cout<<"ORB ";
1120          if(TRK) T = new TChain("Tracker");            cout << endl;
1121          if(CAL) C = new TChain("Calorimeter");  
1122          if(TOF) O = new TChain("ToF");      TChain *T = 0;      
1123          if(TRG) R = new TChain("Trigger");      TChain *C = 0;
1124          if(S4)  S = new TChain("S4");      TChain *O = 0;
1125          if(ND)  N = new TChain("NeutronD");      TChain *R = 0;
1126          if(AC)  A = new TChain("Anticounter");      TChain *S = 0;
1127          if(ORB) B = new TChain("OrbitalInfo");      TChain *N = 0;
1128                TChain *A = 0;
1129          // loop over files and create chains          TChain *B = 0;
1130          TIter next(fl);  
1131          TSystemFile *questo = 0;      TChain *L = 0;
1132          while ( (questo = (TSystemFile*) next()) ) {      
1133                  TString name =  questo->GetName();      if(TRK2||TRK1||TRKh) T = new TChain("Tracker");    
1134  //              cout << "File: "<< name << endl;      if(CAL2||CAL1)       C = new TChain("Calorimeter");
1135                  if( CheckLevel2File(name) ){      if(TOF)              O = new TChain("ToF");
1136                          if(TRK) T->Add(name);      if(TRG)              R = new TChain("Trigger");
1137                          if(CAL) C->Add(name);      if(S4)               S = new TChain("S4");
1138                          if(TOF) O->Add(name);      if(ND)               N = new TChain("NeutronD");
1139                          if(TRG) R->Add(name);      if(AC)               A = new TChain("Anticounter");
1140                          if(S4)  S->Add(name);      if(ORB)              B = new TChain("OrbitalInfo");
1141                          if(ND)  N->Add(name);  
1142                          if(AC)  A->Add(name);       L = new TChain("SelectionList");
1143                          if(ORB) B->Add(name);      
1144                  };      // loop over files and create chains        
1145          }      TIter next(fl);
1146                        TSystemFile *questo = 0;
1147              // Tracker      while ( (questo = (TSystemFile*) next()) ) {
1148          if(TRK) if(!Tout)Tout=T;          TString name =  questo->GetName();
1149                        cout << "File: "<< name << endl;
1150          // Calorimeter          if( CheckLevel2File(name) ){
1151          if(CAL) {                            if(TRK2||TRK1||TRKh) T->Add(name);
1152                  if(!Tout)Tout=C;              if(CAL1||CAL2)       C->Add(name);
1153                  else Tout->AddFriend("Calorimeter");              if(TOF)              O->Add(name);
1154                if(TRG)              R->Add(name);
1155                if(S4)               S->Add(name);
1156                if(ND)               N->Add(name);
1157                if(AC)               A->Add(name);
1158                if(ORB)              B->Add(name);
1159                if(SELLI==1)         L->Add(name);
1160          };          };
1161                }
1162        
1163        cout << "done chain \n";
1164    
1165    //    UInt_t *found=0;
1166    // Tracker
1167        if(T && (TRK2||TRK1||TRKh)) {
1168            if(TRK2)T->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2"));
1169    //      else    T->SetBranchStatus("TrkLevel2",0,found);
1170            if(TRK2)cout << "Tracker      : set branch address TrkLevel2"<<endl;
1171            if(TRK1)T->SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1"));
1172    //      else    T->SetBranchStatus("TrkLevel1",0,found);
1173            if(TRK1)cout << "Tracker      : set branch address TrkLevel1"<<endl;
1174            if(TRKh)T->SetBranchAddress("TrkHough", GetPointerTo("TrkHough"));
1175    //      else    T->SetBranchStatus("TrkHough",0,found);
1176            if(TRKh)cout << "Tracker      : set branch address TrkHough"<<endl;
1177            if(!Trout)Trout=T;
1178            else Trout->AddFriend("Tracker");
1179        }else{
1180            cout << "Tracker      : missing tree"<<endl;
1181        };
1182        // Calorimeter
1183        if(C && (CAL2||CAL1)) {
1184            if(CAL2)C->SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2"));
1185    //      else    C->SetBranchStatus("CaloLevel2",0,found);
1186            if(CAL2)cout << "Calorimeter  : set branch address CaloLevel2"<<endl;
1187            if(CAL1)C->SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1"));
1188    //      else    C->SetBranchStatus("CaloLevel1",0,found);
1189            if(CAL1)cout << "Calorimeter  : set branch address CaloLevel1"<<endl;
1190            if(!Trout)Trout=C;
1191            else Trout->AddFriend("Calorimeter");
1192        }else{
1193            cout << "Calorimeter  : missing tree"<<endl;
1194        };
1195      // ToF          // ToF    
1196          if(TOF) {      if(O && TOF) {
1197                  if(!Tout)Tout=O;          O->SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2"));
1198                  else Tout->AddFriend("ToF");          cout << "ToF          : set branch address ToFLevel2"<<endl;
1199          };          if(!Trout)Trout=O;
1200      // Trigger          else Trout->AddFriend("ToF");
1201          if(TRG) {      }else{
1202                  if(!Tout)Tout=O;          cout << "ToF         : missing tree"<<endl;
1203                  else Tout->AddFriend("Trigger");      };
1204          };      // Trigger
1205      // S4      if(R && TRG) {
1206          if(S4) {          R->SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2"));
1207                  if(!Tout)Tout=O;          cout << "Trigger      : set branch address TrigLevel2"<<endl;
1208                  else Tout->AddFriend("S4");          if(!Trout)Trout=O;
1209          };          else Trout->AddFriend("Trigger");
1210        }else{
1211            cout << "Trigger      : missing tree"<<endl;
1212        };
1213        // S4
1214        if(S && S4) {
1215            S->SetBranchAddress("S4Level2", GetPointerTo("S4Level2"));
1216            cout << "S4           : set branch address S4Level2"<<endl;
1217            if(!Trout)Trout=O;
1218            else Trout->AddFriend("S4");
1219        }else{
1220            cout << "S4           : missing tree"<<endl;
1221        };
1222      // Neutron Detector      // Neutron Detector
1223          if(ND) {      if(N && ND) {
1224                  if(!Tout)Tout=O;          N->SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2"));
1225                  else Tout->AddFriend("NeutronD");          cout << "NeutronD     : set branch address NDLevel2"<<endl;
1226          };          if(!Trout)Trout=O;
1227            else Trout->AddFriend("NeutronD");
1228        }else{
1229            cout << "NeutronD     : missing tree"<<endl;
1230        };
1231      // Anticounters      // Anticounters
1232          if(AC) {      if(A && AC) {
1233                  if(!Tout)Tout=O;          A->SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2"));
1234                  else Tout->AddFriend("Anticounter");          cout << "Anticounter  : set branch address AcLevel2"<<endl;
1235          };          if(!Trout)Trout=O;
1236      // OrbitalInfo          else Trout->AddFriend("Anticounter");
1237          if(ORB) {      }else{
1238                  if(!Tout)Tout=O;          cout << "Anticounter  : missing tree"<<endl;
1239                  else Tout->AddFriend("OrbitalInfo");      };
1240          };      // Orbital Info
1241                if(B && ORB) {
1242          cout<<endl<<" Number of entries: "<<Tout->GetEntries()<<endl<<endl;          B->SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo"));
1243                    cout << "OrbitalInfo  : set branch address OrbitalInfo"<<endl;
1244          PamLevel2::SetBranchAddress();          if(!Trout)Trout=O;
1245                    else Trout->AddFriend("OrbitalInfo");
1246          return Tout;      }else{
1247            cout << "OrbitalInfo  : missing tree"<<endl;
1248        };
1249    
1250        // Selection List
1251        if(L && SELLI==1) {
1252            cout<<">>> Found selection-list <<<"<<endl;
1253            L->SetBranchAddress("RunEntry",&irun);
1254            cout << "SelectionList: set branch address RunEntry"<<endl;
1255            L->SetBranchAddress("EventEntry",&irunentry);
1256            cout << "SelectionList: set branch address EventEntry"<<endl;
1257            sel_tree = L;
1258    //      if(!Trout)Trout=O;
1259    //      else Trout->AddFriend("SelectionList");
1260        }else{
1261    //      cout << "SelectionList  : missing tree"<<endl;
1262            if(L)L->Delete();
1263        };
1264        
1265    //    cout<<endl<<" Number of entries: "<<Trout->GetEntries()<<endl<<endl;
1266    
1267        pam_tree = Trout;
1268    
1269        return Trout;
1270  }  }
1271    
1272    
1273    
1274  //--------------------------------------  //--------------------------------------
1275  //  //
1276  //  //
# Line 746  TChain *PamLevel2::GetPamTree(TList *fl, Line 1278  TChain *PamLevel2::GetPamTree(TList *fl,
1278  /**  /**
1279   * Set branch addresses for Pamela friend trees   * Set branch addresses for Pamela friend trees
1280   */   */
1281  void PamLevel2::SetBranchAddress(){  void PamLevel2::SetBranchAddress(TTree *t){
1282    
1283        TRK2    = TRK2 & t->GetBranchStatus("TrkLevel2");
1284        TRK1    = TRK1 & t->GetBranchStatus("TrkLevel1");
1285        TRKh    = TRKh & t->GetBranchStatus("TrkHough");
1286        CAL2    = CAL2 & t->GetBranchStatus("CaloLevel2");
1287        CAL1    = CAL1 & t->GetBranchStatus("CaloLevel1");
1288        TOF    = TOF & t->GetBranchStatus("ToFLevel2");
1289        TRG    = TRG & t->GetBranchStatus("TrigLevel2");
1290        S4     = S4  & t->GetBranchStatus("S4Level2");
1291        ND     = ND  & t->GetBranchStatus("NDLevel2");
1292        AC     = AC  & t->GetBranchStatus("AcLevel2");
1293        ORB    = ORB & t->GetBranchStatus("OrbitalInfo");
1294    
1295    
1296      // Tracker      // Tracker
1297          if(TRK) {      if(TRK1) {
1298                  if(TRK_L1){          t->SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel2"));
1299                          Tout->SetBranchAddress("TrkLevel1", GetPointerToTrk(1));          cout << "Tracker      : set branch address TrkLevel1"<<endl;
1300                          cout << "Tracker      : set branch address TrkLevel1"<<endl;      };
1301                  };      if(TRK2) {
1302                  Tout->SetBranchAddress("TrkLevel2", GetPointerToTrk(2));          t->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel1"));
1303                  cout << "Tracker      : set branch address TrkLevel2"<<endl;          cout << "Tracker      : set branch address TrkLevel2"<<endl;
1304          };      };
1305                    if(TRKh) {
1306          // Calorimeter          t->SetBranchAddress("TrkHough", GetPointerTo("TrkHough"));
1307          if(CAL) {          cout << "Tracker      : set branch address TrkHough"<<endl;
1308                  Tout->SetBranchAddress("CaloLevel2", GetPointerToCalo());      };
1309                  cout << "Calorimeter  : set branch address CaloLevel2"<<endl;      
1310          };      // Calorimeter
1311                if(CAL1) {
1312            t->SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1"));
1313            cout << "Calorimeter  : set branch address CaloLevel1"<<endl;
1314        };
1315        if(CAL2) {
1316            t->SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2"));
1317            cout << "Calorimeter  : set branch address CaloLevel2"<<endl;
1318        };
1319        
1320      // ToF          // ToF    
1321          if(TOF) {      if(TOF) {
1322                  Tout->SetBranchAddress("ToFLevel2", GetPointerToToF());          t->SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2"));
1323                  cout << "ToF          : set branch address ToFLevel2"<<endl;          cout << "ToF          : set branch address ToFLevel2"<<endl;
1324          };      };
1325      // Trigger      // Trigger
1326          if(TRG) {      if(TRG) {
1327                  Tout->SetBranchAddress("TrigLevel2", GetPointerToTrig());          t->SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2"));
1328                  cout << "Trigger      : set branch address TrigLevel2"<<endl;          cout << "Trigger      : set branch address TrigLevel2"<<endl;
1329          };      };
1330      // S4      // S4
1331          if(S4) {      if(S4) {
1332                  Tout->SetBranchAddress("S4Level2", GetPointerToS4());          t->SetBranchAddress("S4Level2", GetPointerTo("S4Level2"));
1333                  cout << "S4           : set branch address S4Level2"<<endl;          cout << "S4           : set branch address S4Level2"<<endl;
1334          };      };
1335      // Neutron Detector      // Neutron Detector
1336          if(ND) {      if(ND) {
1337                  Tout->SetBranchAddress("NDLevel2", GetPointerToND());          t->SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2"));
1338                  cout << "NeutronD     : set branch address NDLevel2"<<endl;          cout << "NeutronD     : set branch address NDLevel2"<<endl;
1339          };      };
1340      // Anticounters      // Anticounters
1341          if(AC) {      if(AC) {
1342                  Tout->SetBranchAddress("AcLevel2", GetPointerToAc());          t->SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2"));
1343                  cout << "Anticounter  : set branch address AcLevel2"<<endl;          cout << "Anticounter  : set branch address AcLevel2"<<endl;
1344          };      };
1345      // OrbitalInfo      // OrbitalInfo
1346          if(ORB) {      if(ORB) {
1347                  Tout->SetBranchAddress("OrbitalInfo", GetPointerToOrb());          t->SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo"));
1348                  cout << "OrbitalInfo  : set branch address OrbitalInfo"<<endl;          cout << "OrbitalInfo  : set branch address OrbitalInfo"<<endl;
1349          };      };
1350                // SelectionList
1351        if(SELLI==1) {
1352            t->SetBranchAddress("RunEntry", &irun);
1353            cout << "SelectionList: set branch address RunEntry"<<endl;
1354            t->SetBranchAddress("EventEntry", &irunentry);
1355            cout << "SelectionList: set branch address EventEntry"<<endl;
1356        };
1357        
1358  }  }
1359    /**
1360     * Set branch addresses for Pamela friend trees
1361     */
1362    void PamLevel2::SetBranchAddress(TChain *t){
1363    
1364        TRK2    = TRK2 & t->GetBranchStatus("TrkLevel2");
1365        TRK1    = TRK1 & t->GetBranchStatus("TrkLevel1");
1366        TRKh    = TRKh & t->GetBranchStatus("TrkHough");
1367        CAL1    = CAL1 & t->GetBranchStatus("CaloLevel1");
1368        CAL2    = CAL2 & t->GetBranchStatus("CaloLevel2");
1369        TOF    = TOF & t->GetBranchStatus("ToFLevel2");
1370        TRG    = TRG & t->GetBranchStatus("TrigLevel2");
1371        S4     = S4  & t->GetBranchStatus("S4Level2");
1372        ND     = ND  & t->GetBranchStatus("NDLevel2");
1373        AC     = AC  & t->GetBranchStatus("AcLevel2");
1374        ORB    = ORB & t->GetBranchStatus("OrbitalInfo");
1375    
1376        // Tracker
1377         if(TRK2) {
1378            t->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2"));
1379            cout << "Tracker      : set branch address TrkLevel2"<<endl;
1380        };
1381        if(TRK1) {
1382            t->SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1"));
1383            cout << "Tracker      : set branch address TrkLevel1"<<endl;
1384        };
1385         if(TRKh) {
1386            t->SetBranchAddress("TrkHough", GetPointerTo("TrkHough"));
1387            cout << "Tracker      : set branch address TrkHough"<<endl;
1388         };
1389        
1390        // Calorimeter
1391        if(CAL2) {
1392            t->SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2"));
1393            cout << "Calorimeter  : set branch address CaloLevel2"<<endl;
1394        };  
1395        if(CAL1) {
1396            t->SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1"));
1397            cout << "Calorimeter  : set branch address CaloLevel1"<<endl;
1398        };
1399        
1400        // ToF    
1401        if(TOF) {
1402            t->SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2"));
1403            cout << "ToF          : set branch address ToFLevel2"<<endl;
1404        };
1405        // Trigger
1406        if(TRG) {
1407            t->SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2"));
1408            cout << "Trigger      : set branch address TrigLevel2"<<endl;
1409        };
1410        // S4
1411        if(S4) {
1412            t->SetBranchAddress("S4Level2", GetPointerTo("S4Level2"));
1413            cout << "S4           : set branch address S4Level2"<<endl;
1414        };
1415        // Neutron Detector
1416        if(ND) {
1417            t->SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2"));
1418            cout << "NeutronD     : set branch address NDLevel2"<<endl;
1419        };
1420        // Anticounters
1421        if(AC) {
1422            t->SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2"));
1423            cout << "Anticounter  : set branch address AcLevel2"<<endl;
1424        };
1425        // OrbitalInfo
1426        if(ORB) {
1427            t->SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo"));
1428            cout << "OrbitalInfo  : set branch address OrbitalInfo"<<endl;
1429        };
1430        // SelectionList
1431        if(SELLI==1) {
1432            t->SetBranchAddress("RunEntry", &irun);
1433            cout << "SelectionList: set branch address RunEntry"<<endl;
1434            t->SetBranchAddress("EventEntry", &irunentry);
1435            cout << "SelectionList: set branch address EventEntry"<<endl;
1436        };
1437        
1438    }
1439    
1440    
 //--------------------------------------  
 //  
 //  
 //--------------------------------------  
 void *PamLevel2::GetPointerTo(const char* c ){  
 //      cout << "objname "<< objname << endl;  
         TString objname = c;  
         if(!objname.CompareTo("TrkLevel1"))return &trk_l1_obj;  
         if(!objname.CompareTo("TrkLevel2"))return &trk_obj;  
           
         return NULL;  
 };  
1441  //--------------------------------------  //--------------------------------------
1442  //  //
1443  //  //
# Line 819  void *PamLevel2::GetPointerTo(const char Line 1449  void *PamLevel2::GetPointerTo(const char
1449   */   */
1450  TChain *PamLevel2::GetRunTree(TList *fl){  TChain *PamLevel2::GetRunTree(TList *fl){
1451                    
1452          TChain *R = new TChain("Run");      TChain *R = new TChain("Run");
1453        
1454          // loop over files and create chains          // loop over files and create chains        
1455          TIter next(fl);      TIter next(fl);
1456          TSystemFile *questo = 0;      TSystemFile *questo = 0;
1457          while ( (questo = (TSystemFile*) next()) ) {      while ( (questo = (TSystemFile*) next()) ) {
1458                  TString name =  questo->GetName();          TString name =  questo->GetName();
1459  //              cout << "File: "<< name << endl;  //              cout << "File: "<< name << endl;
1460                  if( CheckLevel2File(name) ){          if( CheckLevel2File(name) ){
1461                          R->Add(name);              R->Add(name);
1462                  };          };
1463          }      }
1464            
1465          R->SetBranchAddress("RunInfo", GetPointerToRun());      if(R->GetNtrees()){
         cout << "Run         : set branch address RunInfo"<<endl;  
1466            
1467          return R;          R->SetBranchAddress("RunInfo", GetPointerTo("RunInfo"));
1468            cout << "Run         : set branch address RunInfo"<<endl;
1469            R->SetBranchAddress("SoftInfo", GetPointerTo("SoftInfo")); // Emiliano
1470            cout << "Software    : set branch address SoftInfo"<<endl; // Emiliano
1471        }else{
1472            delete R;
1473            R=0;
1474        }
1475    
1476        run_tree = R;
1477    
1478        return R;
1479            
1480  }  }
1481  //--------------------------------------  //--------------------------------------
# Line 849  TChain *PamLevel2::GetRunTree(TList *fl) Line 1489  TChain *PamLevel2::GetRunTree(TList *fl)
1489   */   */
1490  TTree *PamLevel2::GetRunTree(TFile *f){  TTree *PamLevel2::GetRunTree(TFile *f){
1491    
1492        cout << "TTree *PamLevel2::GetRunTree(TFile *f) -- obsolte "<<endl;
1493    
1494          TTree *R = (TTree*)f->Get("Run");      TTree *R = (TTree*)f->Get("Run");
   
         R->SetBranchAddress("RunInfo", GetPointerToRun());  
         cout << "Run         : set branch address RunInfo"<<endl;  
1495            
1496          return R;      if(R){
1497            R->SetBranchAddress("RunInfo", GetPointerTo("RunInfo"));
1498            cout << "Run         : set branch address RunInfo"<<endl;
1499            R->SetBranchAddress("SoftInfo", GetPointerTo("SoftInfo")); // Emiliano
1500            cout << "Software    : set branch address SoftInfo"<<endl; // Emiliano
1501        }
1502    
1503        run_tree = (TChain*)R;
1504    
1505        return R;
1506            
1507  }  }
1508    /**
1509     * Update the runinfo informations (to be used to have Run infos event by event basis)
1510     * @param run Pointer to the chain/tree which contains run infos
1511     * @return true if a new run has been read, false if it is still the same run
1512     */
1513    Bool_t PamLevel2::UpdateRunInfo(TChain *run, ULong64_t iev){
1514      //
1515      // check if we have already called once GetEntry, if not call it
1516      //
1517      if ( run->GetEntries() <= 0 ) return(false);
1518      //
1519      
1520      Int_t oldrun = irun;
1521      // --------------------------------------
1522      // if it is a full file (not preselected)
1523      // --------------------------------------
1524      if(SELLI==0){
1525          if ( irun < 0 ){
1526              irun = 0;
1527              run->GetEntry(0);
1528              runfirstentry = 0ULL;
1529              runlastentry += (ULong64_t)(this->GetRunInfo()->NEVENTS) - 1ULL;
1530          };
1531          while ( iev > (runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS-1)) && irun < run->GetEntries() ){
1532              //    printf(" iev %llu %u %llu \n",iev,this->GetRunInfo()->NEVENTS,(ULong64_t)(runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS)));
1533              irun++;
1534              run->GetEntry(irun);
1535              runfirstentry = runlastentry+1ULL;
1536              runlastentry += (ULong64_t)(this->GetRunInfo()->NEVENTS);
1537          };
1538          //
1539          if ( irun == oldrun || irun >= run->GetEntries() ) return(false);
1540          //
1541          //  printf(" iev %llu irun %i nevents %u 1st %llu last %llu \n",iev,irun,this->GetRunInfo()->NEVENTS,(ULong64_t)runfirstentry,(ULong64_t)runlastentry);
1542          //
1543          return(true);    
1544      };
1545      // ----------------------------------------------------
1546      // if it is a preselected file (there is SelectionList)
1547      // NBNB - the event tree MUST be read first
1548      // ----------------------------------------------------
1549      if(SELLI==1){      
1550          sel_tree->GetEntry(iev);
1551          if(irun != oldrun){
1552              run->GetEntry(irun);
1553              return true;
1554          }
1555          return false;
1556      }
1557    
1558      return false;
1559      //
1560    };
1561    /**
1562     * Update the runinfo informations (to be used to have Run infos event by event basis)
1563     * @param run Pointer to the chain/tree which contains run infos
1564     * @return true if a new run has been read, false if it is still the same run
1565     */
1566    Bool_t PamLevel2::UpdateRunInfo(TTree *run, ULong64_t iev){
1567      return(UpdateRunInfo((TChain*)run,iev));
1568    };
1569    
1570  //--------------------------------------  //--------------------------------------
1571  //  //
1572  //  //
1573  //--------------------------------------  //--------------------------------------
1574  /**  /**
1575   * Set which trees should be analysed   * Set which trees shoul be analysed
1576   * @param detlist TString containing the sequence of trees required   * @param detlist TString containing the sequence of trees required
1577  */  */
1578  void PamLevel2::SetWhichTrees(TString detlist){  void PamLevel2::SetWhichTrees(TString detlist){
1579                    
1580          if(detlist.Contains("+ALL", TString::kIgnoreCase)){      if(detlist.IsNull() || detlist.Contains("+ALL", TString::kIgnoreCase)){
1581                  CAL = true;          CAL0 = false;
1582                  TRK = true;          CAL1 = true;
1583                  TRK_L1 = false;          CAL2 = true;
1584                  TRG = true;          TRK2 = true;
1585                  TOF = true;          TRK1 = false;
1586                  S4  = true;          TRKh = false;
1587                  ND  = true;          TRK0 = false;
1588                  AC  = true;          TRG = true;
1589                  ORB = true;          TOF = true;
1590          }else if( detlist.Contains("-ALL", TString::kIgnoreCase) ){          TOF0 = false;
1591                  CAL = false;          S4  = true;
1592                  TRK = false;          ND  = true;
1593                  TRK_L1 = false;          AC  = true;
1594                  TRG = false;          ORB = true;
1595                  TOF = false;      }else if( detlist.Contains("-ALL", TString::kIgnoreCase) ){
1596                  S4  = false;          CAL0 = false;
1597                  ND  = false;          CAL1 = false;
1598                  AC  = false;          CAL2 = false;
1599                  ORB = false;          TRK2 = false;
1600          };          TRK1 = false;
1601                    TRKh = false;
1602          if( detlist.Contains("-CAL", TString::kIgnoreCase) )CAL = false;          TRK0 = false;
1603          else if( detlist.Contains("+CAL", TString::kIgnoreCase) )CAL = true;          TRG = false;
1604                    TOF = false;
1605          if( detlist.Contains("-TRK", TString::kIgnoreCase) )TRK = false;          TOF0 = false;
1606          else if( detlist.Contains("+TRK", TString::kIgnoreCase) )TRK = true;          S4  = false;
1607                    ND  = false;
1608          if( detlist.Contains("-TRK1", TString::kIgnoreCase) )TRK_L1 = false;          AC  = false;
1609          else if( detlist.Contains("+TRK1", TString::kIgnoreCase) )TRK_L1 = true;          ORB = false;
1610                };
1611          if( detlist.Contains("-TRG", TString::kIgnoreCase) )TRG = false;      
1612          else if( detlist.Contains("+TRG", TString::kIgnoreCase) )TRG = true;  //  -------------------------------------------------------------------------
1613                if( detlist.Contains("CAL1", TString::kIgnoreCase) ){
1614          if( detlist.Contains("-TOF", TString::kIgnoreCase) )TOF = false;          if ( detlist.Contains("-CAL1", TString::kIgnoreCase) )CAL1=false;
1615          else if( detlist.Contains("+TOF", TString::kIgnoreCase) )TOF = true;          if ( detlist.Contains("+CAL1", TString::kIgnoreCase) )CAL1=true;
1616        };
1617    
1618        if( detlist.Contains("CAL0", TString::kIgnoreCase) ){
1619            if ( detlist.Contains("-CAL0", TString::kIgnoreCase) )CAL0=false;
1620            if ( detlist.Contains("+CAL0", TString::kIgnoreCase) )CAL0=true;
1621        };
1622                    
1623          if( detlist.Contains("-S4",  TString::kIgnoreCase) )S4  = false;      if( detlist.Contains("CAL2", TString::kIgnoreCase)){
1624          else if( detlist.Contains("+S4",  TString::kIgnoreCase) )S4  = true;          if ( detlist.Contains("-CAL2", TString::kIgnoreCase) )CAL2=false;
1625            if ( detlist.Contains("+CAL2", TString::kIgnoreCase) )CAL2=true;
1626        };
1627                    
1628          if( detlist.Contains("-ND",  TString::kIgnoreCase) )ND  = false;      if( detlist.Contains("+CAL", TString::kIgnoreCase) && !CAL1 && !CAL2 )CAL2=true;
1629          else if( detlist.Contains("+ND",  TString::kIgnoreCase) )ND  = true;      if( detlist.Contains("-CAL", TString::kIgnoreCase) && CAL1 && CAL2 ){
1630            CAL2=false;
1631            CAL1=false;
1632        }
1633    //  -------------------------------------------------------------------------
1634        if( detlist.Contains("TRK0", TString::kIgnoreCase) ){
1635            if ( detlist.Contains("-TRK0", TString::kIgnoreCase) )TRK0=false;
1636            if ( detlist.Contains("+TRK0", TString::kIgnoreCase) )TRK0=true;
1637        };
1638    
1639        if( detlist.Contains("TRK1", TString::kIgnoreCase) ){
1640            if ( detlist.Contains("-TRK1", TString::kIgnoreCase) )TRK1=false;
1641            if ( detlist.Contains("+TRK1", TString::kIgnoreCase) )TRK1=true;
1642        };
1643                    
1644          if( detlist.Contains("-AC",  TString::kIgnoreCase) )AC  = false;      if( detlist.Contains("TRK2", TString::kIgnoreCase)){
1645          else if( detlist.Contains("+AC",  TString::kIgnoreCase) )AC  = true;          if ( detlist.Contains("-TRK2", TString::kIgnoreCase) )TRK2=false;
1646            if ( detlist.Contains("+TRK2", TString::kIgnoreCase) )TRK2=true;
1647        };
1648    
1649        if( detlist.Contains("TRKh", TString::kIgnoreCase)){
1650            if ( detlist.Contains("-TRKh", TString::kIgnoreCase) )TRKh=false;
1651            if ( detlist.Contains("+TRKh", TString::kIgnoreCase) )TRKh=true;
1652        };
1653                    
1654          if( detlist.Contains("-ORB", TString::kIgnoreCase) )ORB = false;      if( detlist.Contains("+TRK", TString::kIgnoreCase) && !TRK1 && !TRK2 && !TRKh )TRK2=true;
1655          else if( detlist.Contains("+ORB", TString::kIgnoreCase) )ORB = true;      if( detlist.Contains("-TRK", TString::kIgnoreCase) && TRK1 && TRK2 && TRKh){
1656            TRK2=false;
1657            TRK1=false;
1658            TRKh=false;
1659        }
1660    //  -------------------------------------------------------------------------
1661        
1662        if( detlist.Contains("-TRG", TString::kIgnoreCase) )TRG = false;
1663        else if( detlist.Contains("+TRG", TString::kIgnoreCase) )TRG = true;
1664        
1665        if( detlist.Contains("-TOF", TString::kIgnoreCase) )TOF = false;
1666        else if( detlist.Contains("+TOF", TString::kIgnoreCase) )TOF = true;
1667    
1668        if( detlist.Contains("-TOF0", TString::kIgnoreCase) )TOF0 = false;
1669        else if( detlist.Contains("+TOF0", TString::kIgnoreCase) )TOF0 = true;
1670        
1671        if( detlist.Contains("-S4",  TString::kIgnoreCase) )S4  = false;
1672        else if( detlist.Contains("+S4",  TString::kIgnoreCase) )S4  = true;
1673        
1674        if( detlist.Contains("-ND",  TString::kIgnoreCase) )ND  = false;
1675        else if( detlist.Contains("+ND",  TString::kIgnoreCase) )ND  = true;
1676        
1677        if( detlist.Contains("-AC",  TString::kIgnoreCase) )AC  = false;
1678        else if( detlist.Contains("+AC",  TString::kIgnoreCase) )AC  = true;
1679        
1680        if( detlist.Contains("-ORB", TString::kIgnoreCase) )ORB = false;
1681        else if( detlist.Contains("+ORB", TString::kIgnoreCase) )ORB = true;
1682    
1683    //     cout<< "Set detector list --> ";
1684    //     if(TRK1)cout<<"TRK1 ";
1685    //     if(TRK2)cout<<"TRK2 ";
1686    //     if(TRKh)cout<<"TRKH ";
1687    //     if(CAL1)cout<<"CAL1 ";
1688    //     if(CAL2)cout<<"CAL2 ";
1689    //     if(TOF)cout<<"TOF ";
1690    //     if(TRG)cout<<"TRG ";
1691    //     if(AC)cout<<"AC ";
1692    //     if(ND)cout<<"ND ";
1693    //     if(S4)cout<<"S4 ";
1694    //     if(ORB)cout<<"ORB ";
1695    //     cout << endl;
1696        
1697    };
1698    
1699    
1700    /**
1701     * Set tree/branch detector flags from the content of a tree
1702     */
1703    void  PamLevel2::GetWhichTrees(TFile* f){
1704        
1705    
1706    
1707        cout << "void  PamLevel2::GetWhichTrees(TFile* f) --- WARNING!! --- ...potrebbe non funzionare "<<endl;
1708        // -----------
1709        // reset flags
1710        // -----------
1711        CAL1   = false;    
1712        CAL2   = false;    
1713        TRK2   = false;    
1714        TRK1   = false;    
1715        TRKh   = false;    
1716        TRG    = false;    
1717        TOF    = false;    
1718        S4     = false;    
1719        ND     = false;    
1720        AC     = false;    
1721        ORB    = false;    
1722        
1723        RUN    = false;
1724            
1725        cout << "Checking file: "<<f->GetName()<<endl;
1726        if( !f || f->IsZombie() ){
1727            cout << "File: "<< f->GetName() <<" Non valid root file"<< endl;
1728            return;
1729        }
1730    
1731        TList *lk = f->GetListOfKeys();
1732        TIter next(lk);
1733        TKey *key =0;
1734    
1735        Int_t nev = 0;
1736    
1737        while( (key = (TKey*)next()) ){
1738            
1739            if( !strcmp(key->GetName(),"Run"        ) )RUN = true;
1740    
1741            //=========================================================    
1742            if( !strcmp(key->GetName(),"Trigger"    ) ){
1743                TRG = true;
1744                Int_t nevt = ((TTree*)f->Get("Trigger"))->GetEntries();
1745                if( nev && nevt!=nev){
1746                    cout << "File: "<< f->GetName() <<" Trigger tree has "<<nevt<<" events instead of "<<nev<< endl;
1747                    TRG = false;
1748                }else nev=nevt;
1749            }
1750            //=========================================================    
1751            if( !strcmp(key->GetName(),"ToF"        ) ){
1752                TOF = true;
1753                Int_t nevt = ((TTree*)f->Get("ToF"))->GetEntries();
1754                if( nev && nevt!=nev){
1755                    cout << "File: "<< f->GetName() <<"     ToF tree has "<<nevt<<" events instead of "<<nev<< endl;
1756                    TOF = false;
1757                }else nev=nevt;
1758            }
1759            //=========================================================  
1760            if( !strcmp(key->GetName(),"S4"         ) ){
1761                S4 = true;
1762                Int_t nevt = ((TTree*)f->Get("S4"))->GetEntries();
1763                if( nev && nevt!=nev){
1764                    cout << "File: "<< f->GetName() <<"      S4 tree has "<<nevt<<" events instead of "<<nev<< endl;
1765                    S4 = false;
1766                }else nev=nevt;
1767            }
1768            //=========================================================  
1769    
1770            if( !strcmp(key->GetName(),"NeutronD"   ) ){
1771                ND = true;
1772                Int_t nevt = ((TTree*)f->Get("NeutronD"))->GetEntries();
1773                if( nev && nevt!=nev){
1774                    cout << "File: "<< f->GetName() <<"NeutronD tree has "<<nevt<<" events instead of "<<nev<< endl;
1775                    ND =false;
1776                }else nev=nevt;
1777            }      
1778            //=========================================================  
1779            if( !strcmp(key->GetName(),"Anticounter") ){
1780                AC = true;
1781                Int_t nevt = ((TTree*)f->Get("Anticounter"))->GetEntries();
1782                if( nev && nevt!=nev){
1783                    cout << "File: "<< f->GetName() <<" Anticounter tree has "<<nevt<<" events instead of "<<nev<< endl;
1784                    AC =false;
1785                }else nev=nevt;
1786            }
1787            //=========================================================  
1788            if( !strcmp(key->GetName(),"OrbitalInfo") ){
1789                ORB = true;
1790                Int_t nevt = ((TTree*)f->Get("OrbitalInfo"))->GetEntries();
1791                if( nev && nevt!=nev){
1792                    cout << "File: "<< f->GetName() <<" OrbitalInfo tree has "<<nevt<<" events instead of "<<nev<< endl;
1793                    ORB = false;
1794                }else nev=nevt;
1795            }
1796            //=========================================================  
1797            if( !strcmp(key->GetName(),"Tracker"    ) ){
1798                TTree *T = (TTree*)f->Get("Tracker");
1799                for(Int_t i=0; i<T->GetListOfBranches()->GetEntries(); i++){
1800                    TString name = T->GetListOfBranches()->At(i)->GetName();
1801                    if( !name.CompareTo("TrkLevel1") )TRK1=true;
1802                    if( !name.CompareTo("TrkLevel2") )TRK2=true;
1803                    if( !name.CompareTo("TrkHough") )TRKh=true;
1804                };      
1805                Int_t nevt = T->GetEntries();
1806                if( nev && nevt!=nev){
1807                    cout << "File: "<< f->GetName() <<" Tracker tree has "<<nevt<<" events instead of "<<nev<< endl;
1808                    TRK1 = false;
1809                    TRK2 = false;
1810                    TRKh = false;
1811                }else nev=nevt;
1812                T->Delete();
1813            };
1814            //=========================================================  
1815            if( !strcmp(key->GetName(),"Calorimeter"    ) ){
1816                TTree *T = (TTree*)f->Get("Calorimeter");
1817                for(Int_t i=0; i<T->GetListOfBranches()->GetEntries(); i++){
1818                    TString name = T->GetListOfBranches()->At(i)->GetName();
1819                    if( !name.CompareTo("CaloLevel1") )CAL1=true;
1820                    if( !name.CompareTo("CaloLevel2") )CAL2=true;
1821                };    
1822                Int_t nevt = T->GetEntries();
1823                if( nev && nevt!=nev){
1824                    cout << "File: "<< f->GetName() <<"  Calorimeter tree has "<<nevt<<" events instead of "<<nev<< endl;
1825                    CAL1 = false;
1826                    CAL2 = false;
1827                }else nev=nevt;
1828                T->Delete();
1829            };      
1830    
1831        };
1832        
1833        delete lk;
1834    
1835    //     cout<< "Get detector list from input file --> ";
1836    //     if(TRK1)cout<<"TRK1 ";
1837    //     if(TRK2)cout<<"TRK2 ";
1838    //     if(TRKh)cout<<"TRKH ";
1839    //     if(CAL1)cout<<"CAL1 ";
1840    //     if(CAL2)cout<<"CAL2 ";
1841    //     if(TOF)cout<<"TOF ";
1842    //     if(TRG)cout<<"TRG ";
1843    //     if(AC)cout<<"AC ";
1844    //     if(ND)cout<<"ND ";
1845    //     if(S4)cout<<"S4 ";
1846    //     if(ORB)cout<<"ORB ";
1847    //     cout << endl;
1848          
1849        return ;
1850                    
1851  };  };
1852    
1853    
1854  //--------------------------------------  //--------------------------------------
1855  //  //
1856  //  //
# Line 929  void PamLevel2::SetWhichTrees(TString de Line 1862  void PamLevel2::SetWhichTrees(TString de
1862   */   */
1863  Bool_t  PamLevel2::CheckLevel2File(TString name){  Bool_t  PamLevel2::CheckLevel2File(TString name){
1864                    
1865          Bool_t CAL__ok = false;      Bool_t CAL1__ok   = false;    
1866          Bool_t TRK__ok = false;      Bool_t CAL2__ok   = false;    
1867          Bool_t TRK_L1__ok = false;      Bool_t TRK2__ok   = false;    
1868          Bool_t TRG__ok = false;      Bool_t TRK1__ok   = false;    
1869          Bool_t TOF__ok = false;      Bool_t TRKh__ok   = false;    
1870          Bool_t S4__ok  = false;      Bool_t TRG__ok    = false;    
1871          Bool_t ND__ok  = false;      Bool_t TOF__ok    = false;    
1872          Bool_t AC__ok  = false;      Bool_t S4__ok     = false;    
1873          Bool_t ORB__ok = false;      Bool_t ND__ok     = false;    
1874                Bool_t AC__ok     = false;    
1875          Bool_t RUN__ok = false;      Bool_t ORB__ok    = false;    
1876                
1877          TFile *f = new TFile(name.Data());      Bool_t RUN__ok    = false;
1878          TList *lk = f->GetListOfKeys();      
1879  //      lk->Print();      Bool_t SELLI__ok  = false;
         TIter next(lk);  
         TKey *key =0;  
         while( (key = (TKey*)next()) ){  
 //              cout << key->GetName() << endl;  
                 if( !strcmp(key->GetName(),"Calorimeter") )CAL__ok = true;  
 //              if( !strcmp(key->GetName(),"Tracker"    ) )TRK__ok = true;  
                 if( !strcmp(key->GetName(),"Trigger"    ) )TRG__ok = true;  
                 if( !strcmp(key->GetName(),"ToF"        ) )TOF__ok = true;  
                 if( !strcmp(key->GetName(),"S4"         ) )S4__ok = true;  
                 if( !strcmp(key->GetName(),"NeutronD"   ) )ND__ok = true;  
                 if( !strcmp(key->GetName(),"Anticounter") )AC__ok = true;  
                 if( !strcmp(key->GetName(),"OrbitalInfo") )ORB__ok = true;  
                 if( !strcmp(key->GetName(),"Run"        ) )RUN__ok = true;  
                   
                 if( !strcmp(key->GetName(),"Tracker"    ) ){  
                         TRK__ok = true;  
                         TTree *T = (TTree*)f->Get("Tracker");  
                         for(Int_t i=0; i<T->GetListOfBranches()->GetEntries(); i++){  
                                 TString name = T->GetListOfBranches()->At(i)->GetName();  
                                 if( !name.CompareTo("TrkLevel1") )TRK_L1__ok=true;  
                         };  
                 };  
1880    
1881          };      cout << "Checking file: "<<name<<endl;
1882                        TFile *f = new TFile(name.Data());
1883          lk->Delete();      if( !f || f->IsZombie() ){
1884          f->Close();          cout << "File: "<< f->GetName() <<" discarded ---- Non valid root file"<< endl; return false;
1885        }
1886    //    cout << "Get list of keys: "<<f<<endl;
1887        TList *lk = f->GetListOfKeys();
1888    //    lk->Print();
1889        TIter next(lk);
1890        TKey *key =0;
1891    
1892        Int_t nev = 0;
1893    
1894        while( (key = (TKey*)next()) ){
1895            
1896    //      cout << key->GetName() << endl;
1897    //      cout << key->GetName() << ""<<key->GetClassName()<<endl;
1898    //              cout << " Get tree: " << f->Get(key->GetName())<<endl;
1899    //      nev_previous = nev;
1900    //      cout << " n.entries  "<< nev <<endl;
1901    //      if( key->GetClassName()=="TTree" && nev_previous && nev != nev_previous ){
1902    //          nev = ((TTree*)f->Get(key->GetName()))->GetEntries();
1903    //          cout << "File: "<< f->GetName() <<" discarded ---- "<< key->GetName() << " tree: n.entries does not match "<<nev<<" "<<nev_previous<< endl;
1904    //          return false;
1905    //      };
1906    
1907    
1908            if( !strcmp(key->GetName(),"Run"        ) )RUN__ok = true;      
1909    
1910            //=========================================================    
1911            if( !strcmp(key->GetName(),"SelectionList"    ) ){
1912                SELLI__ok = true;
1913                if(SELLI==1){
1914                    Int_t nevt = ((TTree*)f->Get("SelectionList"))->GetEntries();
1915                    if( nev && nevt!=nev){
1916                        cout << "File: "<< f->GetName() <<" discarded ---- SelectionList tree has "<<nevt<<" events instead of "<<nev<< endl;
1917                        return false;
1918                    }
1919                    nev=nevt;
1920                }
1921            }
1922    
1923            //=========================================================    
1924            if( !strcmp(key->GetName(),"Trigger"    ) ){
1925                TRG__ok = true;
1926                if(TRG){
1927                    Int_t nevt = ((TTree*)f->Get("Trigger"))->GetEntries();
1928                    if( nev && nevt!=nev){
1929                        cout << "File: "<< f->GetName() <<" discarded ---- Trigger tree has "<<nevt<<" events instead of "<<nev<< endl;
1930                        return false;
1931                    }
1932                    nev=nevt;
1933                }
1934            }
1935            //=========================================================    
1936            if( !strcmp(key->GetName(),"ToF"        ) ){
1937                TOF__ok = true;
1938                if(TOF){
1939                    Int_t nevt = ((TTree*)f->Get("ToF"))->GetEntries();
1940                    if( nev && nevt!=nev){
1941                        cout << "File: "<< f->GetName() <<" discarded ---- ToF tree has "<<nevt<<" events instead of "<<nev<< endl;
1942                        return false;
1943                    }
1944                    nev=nevt;
1945                }
1946            }
1947            //=========================================================  
1948            if( !strcmp(key->GetName(),"S4"         ) ){
1949                S4__ok = true;
1950                if(S4){
1951                    Int_t nevt = ((TTree*)f->Get("S4"))->GetEntries();
1952                    if( nev && nevt!=nev){
1953                        cout << "File: "<< f->GetName() <<" discarded ---- S4 tree has "<<nevt<<" events instead of "<<nev<< endl;
1954                        return false;
1955                    }
1956                    nev=nevt;
1957                }
1958            }
1959            //=========================================================  
1960    
1961            if( !strcmp(key->GetName(),"NeutronD"   ) ){
1962                ND__ok = true;
1963                if(ND){
1964                    Int_t nevt = ((TTree*)f->Get("NeutronD"))->GetEntries();
1965                    if( nev && nevt!=nev){
1966                        cout << "File: "<< f->GetName() <<" discarded ---- NeutronD tree has "<<nevt<<" events instead of "<<nev<< endl;
1967                        return false;
1968                    }
1969                    nev=nevt;
1970                }
1971            }      
1972            //=========================================================  
1973            if( !strcmp(key->GetName(),"Anticounter") ){
1974                AC__ok = true;
1975                if(AC){
1976                    Int_t nevt = ((TTree*)f->Get("Anticounter"))->GetEntries();
1977                    if( nev && nevt!=nev){
1978                        cout << "File: "<< f->GetName() <<" discarded ---- Anticounter tree has "<<nevt<<" events instead of "<<nev<< endl;
1979                        return false;
1980                    }
1981                    nev=nevt;
1982                }
1983            }
1984            //=========================================================  
1985            if( !strcmp(key->GetName(),"OrbitalInfo") ){
1986                ORB__ok = true;
1987                if(ORB){
1988                    Int_t nevt = ((TTree*)f->Get("OrbitalInfo"))->GetEntries();
1989                    if( nev && nevt!=nev){
1990                        cout << "File: "<< f->GetName() <<" discarded ---- OrbitalInfo tree has "<<nevt<<" events instead of "<<nev<< endl;
1991                        return false;
1992                    }
1993                    nev=nevt;
1994                }
1995            }
1996            //=========================================================  
1997            if( !strcmp(key->GetName(),"Tracker"    ) ){
1998                TTree *T = (TTree*)f->Get("Tracker");
1999                if(TRK1||TRK2||TRKh){
2000                    Int_t nevt = T->GetEntries();
2001                    if( nev && nevt!=nev){
2002                        cout << "File: "<< f->GetName() <<" discarded ---- Tracker tree has "<<nevt<<" events instead of "<<nev<< endl;
2003                        return false;
2004                    }
2005                    nev=nevt;
2006                }
2007                for(Int_t i=0; i<T->GetListOfBranches()->GetEntries(); i++){
2008                    TString name = T->GetListOfBranches()->At(i)->GetName();
2009                    if( !name.CompareTo("TrkLevel1") )TRK1__ok=true;
2010                    if( !name.CompareTo("TrkLevel2") )TRK2__ok=true;
2011                    if( !name.CompareTo("TrkHough") )TRKh__ok=true;
2012                };      
2013                T->Delete();
2014            };
2015            //=========================================================  
2016            if( !strcmp(key->GetName(),"Calorimeter"    ) ){
2017                TTree *T = (TTree*)f->Get("Calorimeter");
2018                if(CAL1||CAL2){
2019                    Int_t nevt = T->GetEntries();
2020                    if( nev && nevt!=nev){
2021                        cout << "File: "<< f->GetName() <<" discarded ---- Calorimeter tree has "<<nevt<<" events instead of "<<nev<< endl;
2022                        return false;
2023                    }
2024                    nev=nevt;
2025                }
2026                for(Int_t i=0; i<T->GetListOfBranches()->GetEntries(); i++){
2027                    TString name = T->GetListOfBranches()->At(i)->GetName();
2028                    if( !name.CompareTo("CaloLevel1") )CAL1__ok=true;
2029                    if( !name.CompareTo("CaloLevel2") )CAL2__ok=true;
2030                };    
2031                T->Delete();
2032            };      
2033    
2034        };
2035    
2036        if( SELLI==-1 )SELLI = (Int_t)SELLI__ok;
2037        if( SELLI==0 && SELLI__ok ){
2038            cout << "File: "<< f->GetName() <<" discarded ---- found SelectionList (it is not a full-event file)" << endl;
2039            return false;  
2040        }
2041        if( SELLI==1 && !SELLI__ok ){
2042            cout << "File: "<< f->GetName() <<" discarded ---- SelectionList missing" << endl;
2043            return false;
2044        }
2045        
2046    //    cout << "SELLI "<<SELLI<<endl;
2047    
2048    //     cout<< "CheckLevel2File(TString): detector list --> ";
2049    //     if(TRK1__ok)cout<<"TRK1 ";
2050    //     if(TRK2__ok)cout<<"TRK2 ";
2051    //     if(TRKh__ok)cout<<"TRKH ";
2052    //     if(CAL1__ok)cout<<"CAL1 ";
2053    //     if(CAL2__ok)cout<<"CAL2 ";
2054    //     if(TOF__ok)cout<<"TOF ";
2055    //     if(TRG__ok)cout<<"TRG ";
2056    //     if(AC__ok)cout<<"AC ";
2057    //     if(ND__ok)cout<<"ND ";
2058    //     if(S4__ok)cout<<"S4 ";
2059    //     if(ORB__ok)cout<<"ORB ";
2060    //     cout << endl;
2061    
2062    
2063        if(TRK2 && TRK1__ok)TRK1=1;
2064    // ----------------------------------------------------------------------------
2065    // NOTA
2066    // se c'e` il level1, lo devo necessarimente leggere.
2067    // infatti (non ho capito perche`) i cluster vengono letti e allocati in memoria
2068    // comunque, ma non vengono disallocati da PamLevel2::Clear()
2069    // ----------------------------------------------------------------------------
2070    
2071    
2072        if(!RUN__ok) {
2073            cout << "File: "<< f->GetName() <<" *WARNING* ---- Missing RunInfo tree"<< endl;
2074    //      return false;
2075        };
2076    
2077        if(CAL1 && !CAL1__ok){
2078            cout << "File: "<< f->GetName() <<" discarded ---- Missing CaloLevel1 branch"<< endl;
2079            return false;
2080        };
2081        if(CAL2 && !CAL2__ok){
2082            cout << "File: "<< f->GetName() <<" discarded ---- Missing CaloLevel2 branch"<< endl;
2083            return false;
2084        };
2085        if(TRK2 && !TRK2__ok){
2086            cout << "File: "<< f->GetName() <<" discarded ---- Missing TrkLevel2 branch"<< endl;
2087            return false;
2088        };
2089        if(TRK1 && !TRK1__ok){
2090            cout << "File: "<< f->GetName() <<" discarded ---- Missing TrkLevel1 branch"<< endl;
2091            return false;
2092        };
2093        if(TRKh && !TRKh__ok){
2094            cout << "File: "<< f->GetName() <<" discarded ---- Missing TrkHough branch"<< endl;
2095            return false;
2096        };
2097        if(ORB && !ORB__ok){
2098            cout << "File: "<< f->GetName() <<" discarded ---- Missing ORB tree"<< endl;
2099            return false;
2100        };
2101        if(AC && !AC__ok){
2102            cout << "File: "<< f->GetName() <<" discarded ---- Missing AC tree"<< endl;
2103            return false;
2104        };
2105        if(S4 && !S4__ok){
2106            cout << "File: "<< f->GetName() <<" discarded ---- Missing S4 tree"<< endl;
2107            return false;
2108        };
2109        if(TOF && !TOF__ok){
2110            cout << "File: "<< f->GetName() <<" discarded ---- Missing ToF tree"<< endl;
2111            return false;
2112        };
2113    
2114        if(ND && !ND__ok){
2115            cout << "File: "<< f->GetName() <<" discarded ---- Missing ND tree"<< endl;
2116            return false;
2117        };
2118        if(TRG && !TRG__ok){
2119            cout << "File: "<< f->GetName() <<" discarded ---- Missing Trigger tree"<< endl;
2120            return false;
2121        };
2122        
2123    
2124    //    lk->Delete();
2125    //    delete lk;
2126        f->Close();
2127    
2128    //     cout<< "CheckLevel2File(TString): detector list --> ";
2129    //     if(TRK1)cout<<"TRK1 ";
2130    //     if(TRK2)cout<<"TRK2 ";
2131    //     if(TRKh)cout<<"TRKH ";
2132    //     if(CAL1)cout<<"CAL1 ";
2133    //     if(CAL2)cout<<"CAL2 ";
2134    //     if(TOF)cout<<"TOF ";
2135    //     if(TRG)cout<<"TRG ";
2136    //     if(AC)cout<<"AC ";
2137    //     if(ND)cout<<"ND ";
2138    //     if(S4)cout<<"S4 ";
2139    //     if(ORB)cout<<"ORB ";
2140    //     cout << endl;
2141          
2142        return true;
2143                    
2144          Bool_t FLAG = true;  };
2145          if(!RUN__ok) {  
2146                  cout << "File: "<< f->GetName() <<" discarded ---- Missing RunInfo tree"<< endl;  
2147                  FLAG = false;  /**
2148          };   * Create clone-trees
2149          if(CAL && !CAL__ok){   */
2150                  cout << "File: "<< f->GetName() <<" discarded ---- Missing Calorimeter tree"<< endl;  void PamLevel2::CreateCloneTrees0( TChain *fChain, TFile *ofile ){
2151                  FLAG = false;  
2152          };      cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
2153          if(TRK && !TRK__ok){      cout << "Create clones of PAMELA trees "<<endl;
2154                  cout << "File: "<< f->GetName() <<" discarded ---- Missing Tracker tree"<< endl;      
2155                  FLAG = false;      Int_t i=0;
2156          };      pam_tree_clone[i] = fChain->GetTree()->CloneTree(0);
2157          if(TRK_L1 && !TRK_L1__ok){      TString name =  pam_tree_clone[i]->GetName();
2158                  cout << "File: "<< f->GetName() <<" discarded ---- Missing Tracker Level1 Branch"<< endl;      name.Append("_clone");
2159                  FLAG = false;  //    pam_tree_clone[i]->SetName(name.Data());
2160          };      cout << pam_tree_clone[i]->GetName() <<endl;
2161          if(TRG && !TRG__ok){      i++;
2162                  cout << "File: "<< f->GetName() <<" discarded ---- Missing Trigger tree"<< endl;  
2163                  FLAG = false;      TList *li = fChain->GetListOfFriends();
2164          };      TIter next(li);
2165          if(TOF && !TOF__ok){      TFriendElement* T_friend=0;
2166                  cout << "File: "<< f->GetName() <<" discarded ---- Missing ToF tree"<< endl;      ofile->cd();
2167                  FLAG = false;      while( (T_friend = (TFriendElement*)next()) ){
2168          };  //      cout<<T_friend->IsA()->GetName()<<" "<<T_friend->GetName()<<hex << T_friend->GetTree() << dec<<endl;
2169          if(S4 && !S4__ok){  //      cout<<T_friend->GetTree()->GetName()<< endl;
2170                  cout << "File: "<< f->GetName() <<" discarded ---- Missing S4 tree"<< endl;          pam_tree_clone[i] = T_friend->GetTree()->CloneTree(0);
2171                  FLAG = false;          pam_tree_clone[i]->SetAutoSave(1000000);
2172          };          name =  pam_tree_clone[i]->GetName();
2173          if(ND && !ND__ok){          name.Append("_clone");
2174                  cout << "File: "<< f->GetName() <<" discarded ---- Missing ND tree"<< endl;  //      pam_tree_clone[i]->SetName(name.Data());
2175                  FLAG = false;          cout << pam_tree_clone[i]->GetName() << endl;
2176            i++;
2177        }
2178        
2179        delete li;
2180    
2181        cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
2182    
2183    }
2184    
2185    /**
2186     * Create clone-trees
2187     */
2188    void PamLevel2::CreateCloneTrees(TFile *ofile){
2189    
2190        ofile->cd();
2191    
2192        cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
2193        cout << "Create new PAMELA trees "<<endl;
2194            
2195    
2196        run_tree_clone = new TTree("Run","PAMELA Level2 data from the GL_RUN table ");
2197        run_tree_clone->Branch("RunInfo","GL_RUN",GetPointerTo("RunInfo"));
2198        cout << "Run          : branch RunInfo"<<endl;
2199        run_tree_clone->Branch("SoftInfo","SoftInfo",GetPointerTo("SoftInfo"));
2200        cout << "Run          : branch SoftInfo"<<endl;
2201                
2202    
2203    
2204        sel_tree_clone = new TTree("SelectionList","List of selected events ");
2205        sel_tree_clone->Branch("RunEntry",&irun,"runentry/I");
2206        sel_tree_clone->Branch("EventEntry",&irunentry,"eventry/I");
2207        
2208    
2209        Int_t i=0;
2210        if(TRK1||TRK2||TRKh){
2211            pam_tree_clone[i] = new TTree("Tracker","PAMELA tracker level2 data ");
2212            if(TRK1) {
2213                pam_tree_clone[i]->Branch("TrkLevel1","TrkLevel1", GetPointerTo("TrkLevel1"));
2214                pam_tree_clone[i]->BranchRef();
2215                cout << "Tracker      : branch TrkLevel1"<<endl;
2216            };
2217            if(TRK2) {
2218                pam_tree_clone[i]->Branch("TrkLevel2", "TrkLevel2",GetPointerTo("TrkLevel2"));
2219                cout << "Tracker      : branch TrkLevel2"<<endl;        
2220            };
2221            if(TRKh) {
2222                pam_tree_clone[i]->Branch("TrkHough","TrkHough", GetPointerTo("TrkHough"));
2223                cout << "Tracker      : branch TrkHough"<<endl;
2224          };          };
2225          if(AC && !AC__ok){          i++;
2226                  cout << "File: "<< f->GetName() <<" discarded ---- Missing AC tree"<< endl;      }
2227                  FLAG = false;  
2228        // Calorimeter
2229        if(CAL1||CAL2){
2230            pam_tree_clone[i] = new TTree("Calorimeter","PAMELA calorimeter level2 data ");
2231            if(CAL1) {
2232                pam_tree_clone[i]->Branch("CaloLevel1", "CaloLevel1", GetPointerTo("CaloLevel1"));
2233                cout << "Calorimeter  : branch CaloLevel1"<<endl;
2234            };
2235            if(CAL2) {
2236                pam_tree_clone[i]->Branch("CaloLevel2","CaloLevel2", GetPointerTo("CaloLevel2"));
2237                cout << "Calorimeter  : branch CaloLevel2"<<endl;
2238          };          };
2239          if(ORB && !ORB__ok){          i++;
2240                  cout << "File: "<< f->GetName() <<" discarded ---- Missing ORB tree"<< endl;      }    
2241                  FLAG = false;  
2242        // ToF    
2243        if(TOF) {
2244            pam_tree_clone[i] = new TTree("ToF","PAMELA ToF level2 data ");
2245            pam_tree_clone[i]->Branch("ToFLevel2","ToFLevel2", GetPointerTo("ToFLevel2"));
2246            cout << "ToF          : branch ToFLevel2"<<endl;
2247            i++;
2248        };
2249        // Trigger
2250        if(TRG) {
2251            pam_tree_clone[i] = new TTree("Trigger","PAMELA trigger level2 data ");
2252            pam_tree_clone[i]->Branch("TrigLevel2","TrigLevel2", GetPointerTo("TrigLevel2"));
2253            cout << "Trigger      : branch TrigLevel2"<<endl;
2254            i++;
2255        };
2256        // S4
2257        if(S4) {
2258            pam_tree_clone[i] = new TTree("S4","PAMELA S4 level2 data ");  
2259            pam_tree_clone[i]->Branch("S4Level2","S4Level2", GetPointerTo("S4Level2"));
2260            cout << "S4           : branch S4Level2"<<endl;
2261            i++;
2262        };
2263        // Neutron Detector
2264        if(ND) {
2265            pam_tree_clone[i] = new TTree("NeutronD","PAMELA neutron detector level2 data ");      
2266            pam_tree_clone[i]->Branch("NDLevel2","NDLevel2", GetPointerTo("NDLevel2"));
2267            cout << "NeutronD     : branch NDLevel2"<<endl;
2268            i++;
2269        };
2270        // Anticounters
2271        if(AC) {
2272            pam_tree_clone[i] = new TTree("Anticounter","PAMELA anticounter detector level2 data ");        
2273            pam_tree_clone[i]->Branch("AcLevel2","AcLevel2", GetPointerTo("AcLevel2"));
2274            cout << "Anticounter  : branch AcLevel2"<<endl;
2275            i++;
2276        };
2277        // OrbitalInfo
2278        if(ORB) {
2279            pam_tree_clone[i] = new TTree("OrbitalInfo","PAMELA oribital info  ");  
2280            pam_tree_clone[i]->Branch("OrbitalInfo","OrbitalInfo", GetPointerTo("OrbitalInfo"));
2281            cout << "OrbitalInfo  : branch OrbitalInfo"<<endl;
2282            i++;
2283        };
2284        cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
2285    
2286    }
2287    
2288    
2289    /**
2290     * Fill tree (created with CreateCloneTrees)
2291     *
2292     */
2293    //void PamLevel2::FillNewPamTree(TTree *T){
2294    void PamLevel2::FillCloneTrees(){
2295        
2296    //    cout << "PamLevel2::FillCloneTrees()" << irunentry << endl;
2297        for(Int_t i=0; i<NCLONES; i++){
2298            if(pam_tree_clone[i])pam_tree_clone[i]->Fill();
2299        }
2300        if(sel_tree_clone)sel_tree_clone->Fill();    
2301    //    if( irunentry == 0 || run_tree_clone->GetEntries()==0 )run_tree_clone->Fill();
2302    //    Int_t nstoredruns = run_tree_clone->GetEntries();
2303    //     if( irun ==  nstoredruns )run_tree_clone->Fill();
2304    //     else if( irun > nstoredruns || irun < nstoredruns-1){
2305    //      cout << " PamLevel2::FillCloneTrees() -- ERROR -- current run "<< irun <<" stored runs "<< nstoredruns <<endl;
2306    //     }
2307    
2308    }
2309    
2310    
2311    TTree* PamLevel2::GetCloneTree(TString name){
2312    
2313        for(Int_t i=0; i<NCLONES; i++){    
2314            if(pam_tree_clone[i]){
2315                TString na = pam_tree_clone[i]->GetName();
2316                if(!name.CompareTo(na))return pam_tree_clone[i];
2317            };
2318        }
2319        if(run_tree_clone){
2320            TString na = run_tree_clone->GetName();
2321            if(!name.CompareTo(na))return run_tree_clone;
2322        }
2323        if(sel_tree_clone){
2324            TString na = sel_tree_clone->GetName();
2325            if(!name.CompareTo(na))return sel_tree_clone;
2326        }
2327        return NULL;
2328    
2329    }
2330    void PamLevel2::WriteCloneTrees(){
2331        cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
2332        cout << "Write clones of PAMELA trees "<<endl;
2333        cout << run_tree_clone->GetName()<<endl;    
2334        run_tree_clone->Write();
2335        cout << sel_tree_clone->GetName()<<endl;    
2336        sel_tree_clone->Write();
2337        for(Int_t i=0; i<NCLONES; i++){    
2338            if(pam_tree_clone[i]){
2339                cout << pam_tree_clone[i]->GetName()<<endl;
2340                pam_tree_clone[i]->Write();
2341          };          };
2342                }
2343          return FLAG;      cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
2344            
2345  };  }
2346    
2347    /**
2348     * Method to get both level2-trees entry and corresponding run entry.
2349     */
2350    
2351    
2352    Int_t PamLevel2::GetEntry(Int_t iee){
2353        
2354        if(!pam_tree){
2355            cout << " Int_t PamLevel2::GetEntry(Int_t) -- ERROR -- level2 trees not loaded"<<endl;
2356            return 0;
2357        }
2358        if(!run_tree ){
2359            cout << " Int_t PamLevel2::GetEntry(Int_t) -- ERROR -- run tree not loaded"<<endl;
2360            return 0;
2361        }
2362    
2363        Int_t ii=0;
2364        //-------------------------------
2365        ii = iee;
2366        if( !pam_tree->GetEntry(ii) ) return 0;
2367        //-------------------------------
2368        ii = iee;
2369        Bool_t UPDATED = UpdateRunInfo(run_tree,ii);
2370        if(SELLI==0)irunentry = iee-runfirstentry;
2371        if(UPDATED && run_tree_clone)run_tree_clone->Fill();
2372    
2373    //    cout << "PamLevel2::GetEntry("<<iee<<") "<<irun<<" "<<runfirstentry<<" "<<irunentry<<endl;
2374    
2375        if( TRK0 || CAL0 || TOF0 )GetYodaEntry( );
2376    
2377        return 1;
2378    
2379    }
2380    
2381    /**
2382     * Method to retrieve the level0 tree (YODA tree) that contains the current event.
2383     * Given the run ID (...), if needed it query the DB and load the proper file.
2384     * @return Pointer to the tree
2385     */
2386    
2387    
2388    TTree* PamLevel2::GetYodaTree( ){
2389        
2390    //    cout << "TTree* PamLevel2::GetYodaTree( )"<<endl;
2391        //===================================
2392        // check if iroot has changed
2393        //===================================
2394        if( irun<0 ){
2395            cout << "PamLevel2::GetYodaTree() -- ERROR "<<endl;
2396            cout << "In order to use this method you have to load the RunInfo tree "<<endl;
2397            cout << "with the method TChain* PamLevel2::GetRunTree(TString, TString)"<<endl;
2398    //      cout << " - read the event with PamLevel2::GetEntry(Int_t)"<<endl;
2399            return NULL;
2400        }    
2401        Int_t irootnew = run_obj->ID_ROOT_L0;
2402    //    cout << "iroot    "<<iroot<<endl;
2403    //    cout << "irootnew "<<irootnew<<endl;
2404    
2405        //===================================
2406        // load the level0 file
2407        // (if not already loaded)
2408        //===================================
2409        if( iroot != irootnew || !l0_tree){
2410            iroot = irootnew;
2411            //===================================
2412            // open the DB connection
2413            // (if not already opened)
2414            //===================================
2415            if(!dbc || (dbc && !dbc->IsConnected())){
2416                cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
2417                cout<<"Connecting to DB"<<endl;
2418                cout<<"HOST "<<host<<endl;
2419                cout<<"USER "<<user<<endl;
2420                cout<<"PSW  "<<psw<<endl;
2421                dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
2422                if( !dbc )return NULL;
2423                if( !dbc->IsConnected() )return NULL;    
2424    //          cout<<"...done"<<endl;
2425                cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
2426            }else{
2427    //          cout<<"DB already connected"<<endl;
2428            }
2429            GL_ROOT glroot = GL_ROOT();
2430            if( glroot.Query_GL_ROOT(iroot,dbc) )return NULL;
2431            TString filename = glroot.PATH + glroot.NAME;
2432            if(l0_file){
2433                l0_file->Close();
2434                l0_file->Delete();
2435            }
2436            cout << "Opening LEVEL0 file: "<< filename << endl;
2437            FileStat_t t;
2438            if( gSystem->GetPathInfo(filename.Data(),t) ){
2439                cout << " PamLevel2::GetYodaTree() -- ERROR opening file "<<endl;
2440                return NULL;
2441            }
2442            l0_file = new TFile(filename);
2443            if( !l0_file )return NULL;
2444            l0_tree = (TTree*)l0_file->Get("Physics");
2445            if(!h0_obj)h0_obj = new EventHeader();
2446            l0_tree->SetBranchAddress("Header" ,&h0_obj);
2447            //---------------------------------------------------
2448            // TRACKER:
2449            if(TRK0){
2450                if(!trk0_obj){
2451                    trk0_obj = new TrkLevel0();
2452                    trk0_obj->Set();
2453                };
2454                l0_tree->SetBranchAddress("Tracker" ,trk0_obj->GetPointerToTrackerEvent());
2455                TrkParams::SetCalib(run_obj,dbc);
2456            }
2457            //---------------------------------------------------
2458            // CALORIMETER:
2459            if(CAL0){
2460                cout << "PamLevel2::GetYodaTree() --- level0 calorimeter not implemented "<<endl;
2461            }
2462            //---------------------------------------------------
2463            // TOF:
2464            if(TOF0){
2465                cout << "PamLevel2::GetYodaTree() --- level0 TOF not implemented "<<endl;
2466            }
2467    
2468        };
2469    
2470        return l0_tree;
2471    
2472    }
2473    
2474    /**
2475     * Method to retrieve the level0 tree (YODA tree) that contains the current event.
2476     */
2477    Int_t PamLevel2::GetYodaEntry(){
2478    
2479    //    cout << "Int_t PamLevel2::GetYodaEntry()"<<endl;
2480        if(!GetYodaTree())return 0;
2481        
2482        //  ---------------------------------
2483        //  if file is NOT a preselected file
2484        //  ---------------------------------
2485        Int_t quellagiusta = irunentry + run_obj->EV_FROM;
2486        //  ------------------------------------------
2487        //  otherwise read the "preselected-list" tree
2488        //  ------------------------------------------
2489    
2490    //    cout << "LA ENTRY GIUSTA E`: "<<quellagiusta<<" (spero...)"<<endl;
2491        return GetYodaTree()->GetEntry(quellagiusta);
2492        
2493        return 1;
2494        
2495    }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.22

  ViewVC Help
Powered by ViewVC 1.1.23