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

Annotation of /PamelaLevel2/src/PamLevel2.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.28 - (hide annotations) (download)
Sat Mar 17 07:44:24 2007 UTC (17 years, 8 months ago) by mocchiut
Branch: MAIN
Changes since 1.27: +32 -6 lines
Small update of obsolete methods, bug in getentry fixed and temp-list for one file workaround implemented

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

  ViewVC Help
Powered by ViewVC 1.1.23