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

Annotation of /PamelaLevel2/src/PamLevel2.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.22 - (hide annotations) (download)
Thu Mar 8 13:46:34 2007 UTC (17 years, 8 months ago) by mocchiut
Branch: MAIN
Changes since 1.21: +7 -2 lines
Updated obsolete methods used by the EV

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

  ViewVC Help
Powered by ViewVC 1.1.23