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

Annotation of /PamelaLevel2/src/PamLevel2.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.47 - (hide annotations) (download)
Wed Sep 12 09:39:32 2007 UTC (17 years, 2 months ago) by mocchiut
Branch: MAIN
Changes since 1.46: +5 -3 lines
SortTracks() method improved, IsSolved() method added to PamTrack() + other methods to check the sorting

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 mocchiut 1.46 pscore = 0;
15     iscore = 0;
16 pam-fi 1.1 };
17     //--------------------------------------
18     //
19     //
20     //--------------------------------------
21     /**
22     * Constructor
23     */
24     PamTrack::PamTrack(TrkTrack* t, CaloTrkVar* c, ToFTrkVar* o){
25 pam-fi 1.13
26     trk_track = 0;
27     calo_track = 0;
28     tof_track = 0;
29     // if(t)trk_track = new TrkTrack(*t);
30     // if(c)calo_track = new CaloTrkVar(*c);
31     // if(o)tof_track = new ToFTrkVar(*o);
32     if(t)trk_track = t;
33     if(c)calo_track = c;
34     if(o)tof_track = o;
35     candeleteobj = 0;
36    
37 pam-fi 1.1 };
38 pam-fi 1.13 PamTrack::PamTrack(const PamTrack& track){
39    
40     TrkTrack *t = track.trk_track;
41     CaloTrkVar *c = track.calo_track;
42     ToFTrkVar *o = track.tof_track;
43    
44     trk_track = 0;
45     calo_track = 0;
46     tof_track = 0;
47     if(t)trk_track = new TrkTrack(*t);
48     if(c)calo_track = new CaloTrkVar(*c);
49     if(o)tof_track = new ToFTrkVar(*o);
50     candeleteobj = 1;
51    
52     }
53     void PamTrack::Clear(){
54 pam-fi 1.1
55 pam-fi 1.13 // cout << "PamTrack::Clear() "<<candeleteobj<<endl;
56     if(candeleteobj){
57     if(trk_track) trk_track->TrkTrack::Clear();
58     if(calo_track) calo_track->CaloTrkVar::Clear();//???
59     if(tof_track) tof_track->ToFTrkVar::Clear();//???
60     }else{
61     trk_track = 0;
62     calo_track = 0;
63     tof_track = 0;
64     }
65 mocchiut 1.46 pscore = 0;
66     iscore = 0;
67    
68 pam-fi 1.13 }
69     void PamTrack::Delete(){
70     // cout << "PamTrack::Delete() "<<candeleteobj<<endl;
71     if(candeleteobj){
72     if(trk_track) {
73     trk_track->TrkTrack::Clear();
74     delete trk_track;
75     }
76     if(calo_track){
77     calo_track->CaloTrkVar::Clear();//???
78     delete calo_track;
79     }
80     if(tof_track){
81     tof_track->ToFTrkVar::Clear();//???
82     delete tof_track;
83     }
84     }else{
85     Clear();
86     }
87     }
88 pam-fi 1.1 //--------------------------------------
89     //
90     //
91     //--------------------------------------
92     /**
93 mocchiut 1.35 * Default Constructor
94 pam-fi 1.1 */
95     PamLevel2::PamLevel2(){
96 mocchiut 1.35 Initialize();
97     };
98    
99     /**
100     * Constructor with given dir, list and detectors
101     */
102     PamLevel2::PamLevel2(TString ddir,TString list,TString detlist){
103     Initialize();
104     GetPamTree(GetListOfLevel2Files(ddir,list),detlist);
105     GetRunTree(GetListOfLevel2Files(ddir,list));
106     };
107    
108     /**
109     * Constructor with given dir and list
110     */
111     PamLevel2::PamLevel2(TString ddir,TString list){
112     Initialize();
113     GetPamTree(GetListOfLevel2Files(ddir,list),"");
114     GetRunTree(GetListOfLevel2Files(ddir,list));
115     };
116    
117    
118     void PamLevel2::Initialize(){
119 pam-fi 1.2
120 pam-fi 1.20 h0_obj = 0;
121     trk0_obj = 0;
122 mocchiut 1.30 calo0_obj = 0;
123 pam-fi 1.20
124 pam-fi 1.13 trk2_obj = 0;
125     trk1_obj = 0;
126     trkh_obj = 0;
127     calo1_obj = 0;
128     calo2_obj = 0;
129     tof_obj = 0;
130     trig_obj = 0;
131     s4_obj = 0;
132     nd_obj = 0;
133     ac_obj = 0;
134     orb_obj = 0;
135    
136     run_obj = 0;//new GL_RUN();
137 mocchiut 1.15 soft_obj = 0;// Emiliano
138 pam-fi 1.33 irun = -1LL;
139     runfirstentry = 0LL;
140     runlastentry = 0LL;
141 pam-fi 1.9
142 pam-fi 1.20 l0_file = NULL;
143     l0_tree = NULL;
144     iroot = -1;
145     dbc = 0;
146 mocchiut 1.30
147     prevshift = 0;
148 pam-fi 1.20
149     run_tree = NULL;
150     run_tree_clone = NULL;
151     sel_tree = NULL;
152     sel_tree_clone = NULL;
153    
154 pam-fi 1.33 irunentry = -1LL;
155 pam-fi 1.20 pam_tree = NULL;
156     for(Int_t i=0; i<NCLONES; i++ )pam_tree_clone[i]=NULL;
157    
158 pam-fi 1.45 totdltime[0] = 0LL;
159     totdltime[1] = 0LL;
160    
161 pam-fi 1.20 host = "mysql://localhost/pamelaprod";
162     user = "anonymous";
163     psw = "";
164     const char *pamdbhost=gSystem->Getenv("PAM_DBHOST");
165     const char *pamdbuser=gSystem->Getenv("PAM_DBUSER");
166     const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW");
167     if ( !pamdbhost ) pamdbhost = "";
168     if ( !pamdbuser ) pamdbuser = "";
169     if ( !pamdbpsw ) pamdbpsw = "";
170     if ( strcmp(pamdbhost,"") ) host = pamdbhost;
171     if ( strcmp(pamdbuser,"") ) user = pamdbuser;
172     if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw;
173    
174    
175 pam-fi 1.9
176 pam-fi 1.13 // sorted_tracks = 0;//new TRefArray();
177 pam-fi 1.6
178 pam-fi 1.20 CAL0 = false;
179 pam-fi 1.9 CAL1 = true;
180 pam-fi 1.8 CAL2 = true;
181     TRK2 = true;
182     TRK1 = false;
183     TRKh = false;
184 pam-fi 1.20 TRKh = false;
185     TRG = true;
186     TOF = true;
187     TOF0 = false;
188     S4 = true;
189     ND = true;
190     AC = true;
191     ORB = true;
192 pam-fi 1.6
193 pam-fi 1.20 RUN = true;
194    
195     SELLI = -1;
196 pam-fi 1.8
197 pam-fi 1.43 ISGP = false;
198    
199 pam-fi 1.13 tsorted=0;
200     timage=0;
201 mocchiut 1.37
202     howtosort = "+CAL+TOF";
203     //howtosort = "+TOF";
204     sortthr = 100.;
205 pam-fi 1.13
206 pam-fi 1.2 };
207     /**
208 pam-fi 1.13 * Delete the event (act as Dtor)
209 pam-fi 1.2 */
210 pam-fi 1.13 void PamLevel2::Delete(){
211    
212     if(run_obj)delete run_obj;
213 mocchiut 1.15 if(soft_obj)delete soft_obj; //Emiliano
214 pam-fi 1.13
215     // cout << "void PamLevel2::Clear()"<<endl;
216 pam-fi 1.20 if(h0_obj) delete h0_obj;
217     if(trk0_obj) delete trk0_obj;
218 mocchiut 1.30 if(calo0_obj) delete calo0_obj;
219 pam-fi 1.13 if(trk1_obj) delete trk1_obj;
220     if(trk2_obj) delete trk2_obj;
221     if(trkh_obj) delete trkh_obj;
222     if(calo1_obj)delete calo1_obj;
223     if(calo2_obj)delete calo2_obj;
224     if(tof_obj) delete tof_obj;
225     if(trig_obj) delete trig_obj;
226     if(s4_obj) delete s4_obj;
227     if(nd_obj) delete nd_obj;
228     if(ac_obj) delete ac_obj;
229     if(orb_obj) delete orb_obj;
230    
231     if(tsorted){
232     tsorted->Delete();
233     delete tsorted;
234     }
235     if(timage){
236     timage->Delete();
237     delete timage;
238     }
239 pam-fi 1.20
240     if(dbc){
241     dbc->Close();
242     delete dbc;
243     }
244    
245     if(l0_file)l0_file->Close();
246 mocchiut 1.35 // if(pam_tree)pam_tree->Delete();;
247    
248     if ( pam_tree ){
249     //
250     // we have first to find which chains we have to delete, then delete the main chain and only after delete the friend chains. Any other order causes a segfault...
251     //
252     TList *temp = pam_tree->GetListOfFriends();
253     TList *contents = new TList; // create chain friend list
254     contents->SetOwner();
255     TIter next(temp);
256     TChain *questo = 0;
257     while ( (questo = (TChain*) next()) ){
258     TString name = questo->GetName();
259     contents->Add((TChain*)gROOT->FindObject(name.Data()));// add object to the list
260     };
261     //
262     // deleting the main chain
263     //
264     pam_tree->Delete();
265     //
266     // deleting the friends...
267     //
268     TIter next2(contents);
269     TChain *questa = 0;
270     while ( questa = (TChain*)next2() ){
271     TString name = questa->GetName();
272     questa->Delete();
273     questa=NULL;
274     };
275     //
276     };
277     pam_tree = NULL;
278    
279 pam-fi 1.20 if(run_tree)run_tree->Delete();;
280     if(sel_tree)sel_tree->Delete();;
281     for(Int_t i=0; i<NCLONES; i++ )if(pam_tree_clone[i])pam_tree_clone[i]->Delete();;
282     if(run_tree_clone)run_tree_clone->Delete();;
283     if(sel_tree_clone)sel_tree_clone->Delete();;
284    
285    
286 pam-fi 1.2 };
287 pam-fi 1.13
288 pam-fi 1.2 /**
289 pam-fi 1.13 * Clear the event (NB! does not deallocate objects)
290 pam-fi 1.2 */
291     void PamLevel2::Clear(){
292 pam-fi 1.3
293 pam-fi 1.13 // cout << "void PamLevel2::Clear()"<<endl;
294 mocchiut 1.15
295     //
296 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
297     // want to load them for each event even if they are the same...
298     //
299 mocchiut 1.15 // if(run_obj)delete run_obj;
300 mocchiut 1.17 // if(run_obj) run_obj->Clear(); // Emiliano: Do not deallocate run_obj here, it will give segmentation fault! call clear instead
301     // if(soft_obj) soft_obj->Clear();
302 pam-fi 1.13
303 pam-fi 1.20 if(h0_obj) h0_obj->Clear();
304 pam-fi 1.33 // if(trk0_obj) trk0_obj->Clear();
305 pam-fi 1.13 if(trk1_obj) trk1_obj->Clear();
306 mocchiut 1.35 if(trk2_obj) trk2_obj->Clear();
307 pam-fi 1.13 if(trkh_obj) trkh_obj->Clear();
308 pam-fi 1.40 if(calo0_obj) calo0_obj->Clear();
309 pam-fi 1.13 if(calo1_obj)calo1_obj->Clear();
310     if(calo2_obj)calo2_obj->Clear();
311     if(tof_obj) tof_obj->Clear();
312     if(trig_obj) trig_obj->Clear();
313     if(s4_obj) s4_obj->Clear();
314     if(nd_obj) nd_obj->Clear();
315     if(ac_obj) ac_obj->Clear();
316     if(orb_obj) orb_obj->Clear();
317 pam-fi 1.6
318 pam-fi 1.13 // if(sorted_tracks)sorted_tracks->Clear();
319     // sorted_tracks.Clear();
320    
321     if(tsorted){
322     tsorted->Delete();
323     }
324     if(timage){
325     timage->Delete();
326     }
327 mocchiut 1.35 };
328    
329     void PamLevel2::Reset(){
330     //
331     // First of all clear everything
332     //
333     Clear();
334     //
335     // close and reset chains and pointers
336     //
337     if ( pam_tree ){
338     //
339     // we have first to find which chains we have to delete, then delete the main chain and only after delete the friend chains. Any other order causes a segfault...
340     //
341     TList *temp = pam_tree->GetListOfFriends();
342     TList *contents = new TList; // create chain friend list
343     contents->SetOwner();
344     TIter next(temp);
345     TChain *questo = 0;
346     while ( (questo = (TChain*) next()) ){
347     TString name = questo->GetName();
348     contents->Add((TChain*)gROOT->FindObject(name.Data()));// add object to the list
349     };
350     //
351     // deleting the main chain
352     //
353     pam_tree->Delete();
354     //
355     // deleting the friends...
356     //
357     TIter next2(contents);
358     TChain *questa = 0;
359     while ( questa = (TChain*)next2() ){
360     TString name = questa->GetName();
361     questa->Delete();
362     questa=NULL;
363     };
364     //
365     };
366     pam_tree = NULL;
367     //
368     if(run_tree)run_tree->Delete();;
369     run_tree = NULL;
370     if(sel_tree)sel_tree->Delete();;
371     sel_tree = NULL;
372     //
373     // Close file
374     //
375     if(l0_file)l0_file->Close("R");
376     l0_file = NULL;
377     //
378     h0_obj = 0;
379     trk0_obj = 0;
380     calo0_obj = 0;
381     //
382     trk2_obj = 0;
383     trk1_obj = 0;
384     trkh_obj = 0;
385     calo1_obj = 0;
386     calo2_obj = 0;
387     tof_obj = 0;
388     trig_obj = 0;
389     s4_obj = 0;
390     nd_obj = 0;
391     ac_obj = 0;
392     orb_obj = 0;
393     //
394     // Reset run pointers
395     //
396     run_obj = 0;//new GL_RUN();
397     soft_obj = 0;// Emiliano
398     irun = -1;
399     runfirstentry = 0ULL;
400     runlastentry = 0ULL;
401     //
402 pam-fi 1.45 totdltime[0] = 0LL;
403     totdltime[1] = 0LL;
404     //
405 pam-fi 1.1 };
406 pam-fi 1.2
407 mocchiut 1.38 Bool_t PamLevel2::IsGood(){
408     Bool_t goodev=true;
409     // if(trk2_obj && trk2_obj->UnpackError() != 0 ) goodev = false;
410     if(calo2_obj && calo2_obj->good != 1) goodev = false;
411     if(tof_obj && tof_obj->unpackError != 0) goodev = false;
412     if(trig_obj && trig_obj->unpackError != 0) goodev = false;
413     if(s4_obj && s4_obj->unpackError != 0) goodev = false;
414     if(nd_obj && nd_obj->unpackError != 0) goodev = false;
415     if(ac_obj && ac_obj->unpackError != 255) goodev = false;
416     // if(orb_obj)
417     return goodev;
418     };
419 pam-fi 1.2
420 pam-fi 1.1 //--------------------------------------
421     //
422     //
423     //--------------------------------------
424 pam-fi 1.9 void *PamLevel2::GetPointerTo(const char* c ){
425    
426     TString objname = c;
427 pam-fi 1.13
428     if(!objname.CompareTo("TrkLevel1")) {
429 pam-fi 1.14 if(!trk1_obj){
430     trk1_obj = new TrkLevel1();
431     trk1_obj->Set();
432     }
433 pam-fi 1.13 return &trk1_obj;
434     };
435     if(!objname.CompareTo("TrkLevel2")) {
436 pam-fi 1.14 if(!trk2_obj){
437     trk2_obj = new TrkLevel2();
438     trk2_obj->Set();
439     }
440 pam-fi 1.13 return &trk2_obj;
441     };
442     if(!objname.CompareTo("TrkHough")) {
443     if(!trkh_obj) trkh_obj = new TrkHough();
444     return &trkh_obj;
445     };
446     if(!objname.CompareTo("CaloLevel1")) {
447     if(!calo1_obj) calo1_obj = new CaloLevel1();
448     return &calo1_obj;
449     };
450     if(!objname.CompareTo("CaloLevel2")) {
451 pam-fi 1.14 if(!calo2_obj){
452     calo2_obj = new CaloLevel2();
453     calo2_obj->Set();
454     };
455 pam-fi 1.13 return &calo2_obj;
456     };
457     if(!objname.CompareTo("ToFLevel2")) {
458 pam-fi 1.14 if(!tof_obj){
459     tof_obj = new ToFLevel2();
460     tof_obj->Set();
461     }
462 pam-fi 1.13 return &tof_obj;
463     };
464     if(!objname.CompareTo("TrigLevel2")) {
465     if(!trig_obj) trig_obj = new TrigLevel2();
466     return &trig_obj;
467     };
468     if(!objname.CompareTo("S4Level2")) {
469     if(!s4_obj) s4_obj = new S4Level2();
470     return &s4_obj;
471     };
472     if(!objname.CompareTo("NDLevel2")) {
473     if(!nd_obj) nd_obj = new NDLevel2();
474     return &nd_obj;
475     };
476     if(!objname.CompareTo("AcLevel2")) {
477     if(!ac_obj) ac_obj = new AcLevel2();
478     return &ac_obj;
479     };
480     if(!objname.CompareTo("OrbitalInfo")){
481     if(!orb_obj) orb_obj = new OrbitalInfo();
482     return &orb_obj;
483     };
484    
485 pam-fi 1.9 if(!objname.CompareTo("RunInfo"))return &run_obj;
486 mocchiut 1.15
487     if(!objname.CompareTo("SoftInfo"))return &soft_obj; // Emiliano
488    
489 pam-fi 1.9 return NULL;
490     };
491     //--------------------------------------
492     //
493     //
494     //--------------------------------------
495 pam-fi 1.1 /**
496 pam-fi 1.3 * Retrieves the calorimeter track matching the seqno-th tracker stored track.
497     * (If seqno = -1 retrieves the self-trigger calorimeter track)
498     */
499     CaloTrkVar *PamLevel2::GetCaloStoredTrack(int seqno){
500 pam-fi 1.13
501     if( !calo2_obj )return 0;
502    
503     if( calo2_obj->CaloLevel2::ntrk()==0 ){
504 pam-fi 1.6 cout << "PamLevel2::GetCaloStoredTrack(int) : requested tracker SeqNo "<< seqno <<" but no Calorimeter tracks are stored"<<endl;
505     return NULL;
506     };
507    
508     CaloTrkVar *c = 0;
509     Int_t it_calo=0;
510    
511     do{
512 pam-fi 1.13 c = calo2_obj->CaloLevel2::GetCaloTrkVar(it_calo);
513 pam-fi 1.6 it_calo++;
514 pam-fi 1.13 } while( c && seqno != c->trkseqno && it_calo < calo2_obj->CaloLevel2::ntrk());
515 pam-fi 1.6
516     if(!c || seqno != c->trkseqno){
517     c = 0;
518     if(seqno!=-1)cout << "PamLevel2::GetCaloStoredTrack(int) : requested tracker SeqNo "<< seqno <<" does not match Calorimeter stored tracks"<<endl;
519     };
520     return c;
521    
522 pam-fi 1.3 };
523     //--------------------------------------
524     //
525     //
526     //--------------------------------------
527     /**
528     * Retrieves the ToF track matching the seqno-th tracker stored track.
529     * (If seqno = -1 retrieves the tracker-independent tof track)
530     */
531     ToFTrkVar *PamLevel2::GetToFStoredTrack(int seqno){
532    
533 pam-fi 1.13 if( !tof_obj )return 0;
534    
535     if( tof_obj->ToFLevel2::ntrk()==0 ){
536 pam-fi 1.6 cout << "PamLevel2::GetToFStoredTrack(int) : requested tracker SeqNo "<< seqno <<" but no ToF tracks are stored"<<endl;
537     return NULL;
538     };
539    
540     ToFTrkVar *c = 0;
541     Int_t it_tof=0;
542    
543     do{
544 pam-fi 1.13 c = tof_obj->ToFLevel2::GetToFTrkVar(it_tof);
545 pam-fi 1.6 it_tof++;
546 pam-fi 1.13 } while( c && seqno != c->trkseqno && it_tof < tof_obj->ToFLevel2::ntrk());
547 pam-fi 1.6
548     if(!c || seqno != c->trkseqno){
549     c = 0;
550     if(seqno!=-1)cout << "PamLevel2::GetToFStoredTrack(int) : requested tracker SeqNo "<< seqno <<" does not match ToF stored tracks"<<endl;
551     };
552     return c;
553    
554 pam-fi 1.3 };
555    
556     //--------------------------------------
557     //
558     //
559     //--------------------------------------
560     /**
561     * Give the pamela track associated to a tracker track, retrieving related calorimeter and tof track information.
562     */
563     PamTrack* PamLevel2::GetPamTrackAlong(TrkTrack* t){
564 pam-fi 1.13
565     cout <<"PamLevel2::GetPamTrackAlong(TrkTrack* t) **obsolete** "<<endl;
566     cout <<"(if you use it, remember to delete the PamTrack object)"<<endl;
567    
568 pam-fi 1.6 CaloTrkVar *c = 0;
569     ToFTrkVar *o = 0;
570    
571 pam-fi 1.8 if(CAL2) c = GetCaloStoredTrack(t->GetSeqNo());
572 pam-fi 1.6 if(TOF) o = GetToFStoredTrack(t->GetSeqNo());
573    
574 pam-fi 1.3 // if(t && c && o)track = new PamTrack(t,c,o);
575 pam-fi 1.6 PamTrack *track = new PamTrack(t,c,o);
576    
577     return track;
578 pam-fi 1.3
579     };
580     //--------------------------------------
581     //
582     //
583     //--------------------------------------
584     /**
585 pam-fi 1.1 * Retrieves the it-th stored track.
586     * It override TrkLevel2::GetTrack(int it).
587     * @param itrk Track number, ranging from 0 to GetNTracks().
588     */
589    
590     PamTrack* PamLevel2::GetStoredTrack(Int_t itrk){
591    
592 pam-fi 1.13 cout <<"PamLevel2::GetStoredTrack(Int_t itrk) **to-be-updated** "<<endl;
593     cout <<"for the moment, better use separately the methods: TrkLevel2::GetStoredTrack(seqno) CaloLevel2::GetCaloTrkVar(Int_t notrack) ToFLevel2::GetToFTrkVar(Int_t notrack)"<<endl;
594     cout <<"(if you use it, remember to delete the PamTrack object)"<<endl;
595 pam-fi 1.6 PamTrack *track = 0;
596    
597 pam-fi 1.13 if( itrk >=0 && itrk < trk2_obj->TrkLevel2::ntrk() ){
598 pam-fi 1.3
599 pam-fi 1.13 TrkTrack *t = trk2_obj->TrkLevel2::GetStoredTrack(itrk);
600 pam-fi 1.6 track = GetPamTrackAlong(t);
601 pam-fi 1.2
602 pam-fi 1.13
603    
604 pam-fi 1.6 }else{
605 pam-fi 1.13 cout << "PamLevel2::GetStoredTrack(int) : tracker track SeqNo "<< itrk <<" does not exist (GetNTracks() = "<<trk2_obj->TrkLevel2::GetNTracks()<<")"<<endl;
606 pam-fi 1.6 };
607    
608     return track;
609    
610 pam-fi 1.1 }
611     //--------------------------------------
612     //
613 mocchiut 1.37
614     /**
615     * Sort physical (tracker) tracks and stores them in the TRefArray (of TrkTrack objects) which pointer is PamLevel2::sorted_tracks. Left here as backward compatibility method.
616     **/
617     void PamLevel2::SortTracks(TString how){
618     printf(" WARNING! obsolete, use SortTracks() and SetSortingMethod(TString) instead! \n Setting sorting method to %s \n",how.Data());
619     howtosort = how;
620     SortTracks();
621     };
622    
623 pam-fi 1.1 //
624     //--------------------------------------
625     /**
626 pam-fi 1.3 * Sort physical (tracker) tracks and stores them in the TRefArray (of TrkTrack objects) which pointer is PamLevel2::sorted_tracks.
627     * @param how String to set the sorting cryterium (es: "CAL" or "TRK+CAL+TOF" ecc...).
628     * Sorting cryteria:
629 pam-fi 1.8 * TRK: lower chi**2
630 pam-fi 1.3 * CAL: lower Y spatial residual on the first calorimeter plane
631     * TOF: bigger numebr of hit PMTs along the track, on S12 S21 S32 (where paddles are along the Y axis).
632     * The default sorting cryterium is "TOF+CAL".
633     *
634     * 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).
635 pam-fi 1.1 */
636 mocchiut 1.37 void PamLevel2::SortTracks(){
637     TString how = howtosort;
638 pam-fi 1.1
639 mocchiut 1.46 // cout <<" PamLevel2::SortTracks(TString how) "<<endl;
640 mocchiut 1.37 if( !trk2_obj ){
641     cout << "void PamLevel2::SortTracks(): TrkLevel2 not loaded !!!";
642     return;
643     };
644     // cout << "call SortTracs() "<<endl;
645 pam-fi 1.4 //Save current Object count
646 mocchiut 1.37 Int_t ObjectNumber = TProcessID::GetObjectCount();
647 pam-fi 1.9
648 mocchiut 1.37 // cout << "ObjectNumber "<<ObjectNumber <<endl;
649 pam-fi 1.13
650 mocchiut 1.37 // if(!sorted_tracks)sorted_tracks = new TRefArray();
651     // sorted_tracks->Clear();
652     // sorted_tracks.Clear();
653 pam-fi 1.13
654 mocchiut 1.37 if(!tsorted)tsorted = new TClonesArray("PamTrack",trk2_obj->GetNTracks());
655     tsorted->Delete();
656     TClonesArray &ttsorted = *tsorted;
657     if(!timage)timage = new TClonesArray("PamTrack",trk2_obj->GetNTracks());
658     timage->Delete();
659     TClonesArray &ttimage = *timage;
660 pam-fi 1.13
661    
662 pam-fi 1.41
663     //--------------------------------------------------
664     // retrieve sorting method
665     //--------------------------------------------------
666 mocchiut 1.37 Bool_t use_TRK = how.Contains("TRK", TString::kIgnoreCase);
667     Bool_t use_CAL = how.Contains("CAL", TString::kIgnoreCase);
668     Bool_t use_TOF = how.Contains("TOF", TString::kIgnoreCase);
669 mocchiut 1.46 Bool_t use_S1 = how.Contains("S1", TString::kIgnoreCase);
670     Bool_t use_S2 = how.Contains("S2", TString::kIgnoreCase);
671     Bool_t use_S3 = how.Contains("S3", TString::kIgnoreCase);
672    
673     if ( use_TOF ){
674     use_S1 = true;
675     use_S2 = true;
676     use_S3 = true;
677     };
678 mocchiut 1.37 if( !CAL2 && use_CAL) use_CAL = false;
679 mocchiut 1.46 if( !TOF ){
680     use_TOF = false;
681     use_S1 = false;
682     use_S2 = false;
683     use_S3 = false;
684     }
685    
686 mocchiut 1.37 if( !TRK2 ){
687     // cout << "SortTracks() : without tracker does not work!!! (not yet)" << endl;
688     return;
689     };
690 pam-fi 1.9
691 mocchiut 1.37 // cout << "use_CAL "<<use_CAL<<" use_TOF "<<use_TOF<<" use_TRK "<<use_TRK <<endl;
692 pam-fi 1.41
693    
694     //--------------------------------------------------
695     // loop over "physical" tracks sorted by the tracker
696     //--------------------------------------------------
697 mocchiut 1.37 for(Int_t i=0; i < trk2_obj->TrkLevel2::GetNTracks(); i++){
698 pam-fi 1.4
699 mocchiut 1.37 TrkTrack *ts = 0;
700     CaloTrkVar *cs = 0;
701     ToFTrkVar *os = 0;
702    
703     // get tracker tracks
704 pam-fi 1.41 TrkTrack *tp = trk2_obj->TrkLevel2::GetTrack(i); //tracker
705 mocchiut 1.37 CaloTrkVar *cp = GetCaloStoredTrack(tp->GetSeqNo());
706     ToFTrkVar *op = GetToFStoredTrack(tp->GetSeqNo());
707    
708 pam-fi 1.41 TrkTrack *ti = 0; //tracker (image)
709 mocchiut 1.37 CaloTrkVar *ci = 0;
710     ToFTrkVar *oi = 0;
711     // cout << "trk track n. "<<i << " "<<hex<< tp <<dec<< endl;
712     // if track has an image, check image selection
713 mocchiut 1.46
714     Int_t tp_score = 0; //main track sorted by the tracker
715     Int_t ti_score = 0; //image track
716     Int_t totp_score = 0; //main track sorted by the tracker
717     Int_t toti_score = 0; //image track
718    
719 mocchiut 1.37 if(tp->HasImage()){
720 pam-fi 1.6
721 mocchiut 1.37 ti = trk2_obj->TrkLevel2::GetTrackImage(i); //tracker (image)
722     ci = GetCaloStoredTrack(ti->GetSeqNo());
723     oi = GetToFStoredTrack(ti->GetSeqNo());
724 pam-fi 1.6
725 mocchiut 1.37 // cout << "its image "<<i << " "<<hex<< ti <<dec<< endl;
726 pam-fi 1.9
727 mocchiut 1.37 //assign starting scores
728 mocchiut 1.46 tp_score = 0; //main track sorted by the tracker
729     ti_score = 0; //image track
730 pam-fi 1.6
731 pam-fi 1.41 // -----------------------------------------------------------------------------------------
732 mocchiut 1.37 // calorimeter check
733 pam-fi 1.41 // -----------------------------------------------------------------------------------------
734 mocchiut 1.37 // check the Y spatial residual on the first calorimeter plane
735     // (cut on calorimeter variables from Emiliano)
736     if( use_CAL && !calo2_obj ){
737     cout << "void PamLevel2::SortTracks(): howtosort= "<<how<<" but CaloLevel2 not loaded !!!";
738     return;
739     };
740 mocchiut 1.46 if( use_CAL && !cp && ci ){
741     ti_score++;
742     toti_score++;
743     };
744     if( use_CAL && cp && !ci ){
745     tp_score++;
746     totp_score++;
747     };
748 mocchiut 1.37 if(
749     use_CAL &&
750 pam-fi 1.41 // calo2_obj->npcfit[1] > 5 && //no. of fit planes on Y view
751     // calo2_obj->varcfit[1] < 1000. && //fit variance on Y view
752 mocchiut 1.37 cp && ci &&
753     true){
754 pam-fi 1.9
755 pam-fi 1.6
756 pam-fi 1.41 // Float_t resy_p = cp->tbar[0][1] - calo2_obj->cbar[0][1]; if(resy_p < 0)resy_p= - resy_p;
757     // Float_t resy_i = ci->tbar[0][1] - calo2_obj->cbar[0][1]; if(resy_i < 0)resy_i= - resy_i;
758 pam-fi 1.6
759 pam-fi 1.41 // if(resy_p <= resy_i) tp_score++;
760     // else ti_score++;
761 mocchiut 1.37
762 pam-fi 1.41
763 mocchiut 1.46 if( cp->npresh > ci->npresh){
764     tp_score++;
765     totp_score++;
766     };
767     if( cp->npresh < ci->npresh){
768     ti_score++;
769     toti_score++;
770     };
771 pam-fi 1.41
772 mocchiut 1.37 // cout << "CALO "<<tp_score<<ti_score<<endl;
773 pam-fi 1.9
774 mocchiut 1.37 };
775 pam-fi 1.41 // -----------------------------------------------------------------------------------------
776 mocchiut 1.37 // TOF check
777 pam-fi 1.41 // -----------------------------------------------------------------------------------------
778 mocchiut 1.37 // check the number of hit pmts along the track
779     // on S12 S21 and S32, where paddles are parallel to Y axis
780 mocchiut 1.46 if( (use_TOF || use_S1 || use_S2 || use_S3 ) && !tof_obj ){
781 mocchiut 1.37 cout << "void PamLevel2::SortTracks(): howtosort= "<<how<<" but ToFLevel2 not loaded !!!";
782     return;
783     };
784 mocchiut 1.46 //
785     if( (use_TOF || use_S1 || use_S2 || use_S3 ) && !op && oi ){
786     ti_score++;
787     toti_score++;
788     };
789     if( (use_TOF || use_S1 || use_S2 || use_S3 ) && op && !oi ){
790     tp_score++;
791     totp_score++;
792     };
793     if( (use_TOF || use_S1 || use_S2 || use_S3 ) && op && oi ){
794 mocchiut 1.37 //
795     Float_t sen = 0.;
796     for (Int_t ih=0; ih < op->npmtadc; ih++){
797     Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) );
798     if ( pl == 2 || pl == 3 || pl == 4 || pl == 5 ) sen += (op->dedx).At(ih);
799     };
800     for (Int_t ih=0; ih < oi->npmtadc; ih++){
801     Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) );
802     if ( pl == 2 || pl == 3 || pl == 4 || pl == 5 ) sen += (oi->dedx).At(ih);
803     };
804     //
805 mocchiut 1.46 if ( sen >= sortthr && false){ // temporary disabled NUCLEI special algorithm since the new one should work for every particle (to be checked!)
806 mocchiut 1.37 //printf(" IS A NUCLEUS! en = %f \n",sen);
807     //
808     // is a nucleus use a different algorithm
809     //
810     Int_t nz = 6; Float_t zin[6]; // << define TOF z-coordinates
811     for(Int_t ip=0; ip<nz; ip++)
812     zin[ip] = tof_obj->ToFLevel2::GetZTOF(tof_obj->ToFLevel2::GetToFPlaneID(ip)); // << read ToF plane z-coordinates
813     Trajectory *tr = new Trajectory(nz,zin);
814     //
815     Int_t nphit_p =0;
816     Int_t nphit_i =0;
817     Float_t enhit_p = 0.;
818     Float_t enhit_i = 0.;
819     //
820     for (Int_t ih=0; ih < op->npmtadc; ih++){
821     Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) );
822     if(pl == 1 || pl == 2 || pl == 5){
823     nphit_p++;
824     enhit_p += (op->dedx).At(ih);
825     };
826     };
827     //
828     tp->DoTrack2(tr);
829     //
830     if ( fabs(tr->y[0]-oi->ytofpos[0]) < 2. ){
831     for (Int_t ih=0; ih < op->npmtadc; ih++){
832     Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) );
833     if(pl == 0){
834     nphit_p++;
835     enhit_p += (op->dedx).At(ih);
836     };
837     };
838     };
839     if ( fabs(tr->y[3]-oi->ytofpos[1]) < 2. ){
840     for (Int_t ih=0; ih < op->npmtadc; ih++){
841     Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) );
842     if(pl == 3){
843     nphit_p++;
844     enhit_p += (op->dedx).At(ih);
845     };
846     };
847     };
848     if ( fabs(tr->y[4]-oi->ytofpos[2]) < 2. ){
849     for (Int_t ih=0; ih < op->npmtadc; ih++){
850     Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) );
851     if(pl == 4){
852     nphit_p++;
853     enhit_p += (op->dedx).At(ih);
854     };
855     };
856     };
857 pam-fi 1.9
858 mocchiut 1.37 for (Int_t ih=0; ih < oi->npmtadc; ih++){
859     Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) );
860     if(pl == 1 || pl == 2 || pl == 5){
861     nphit_i++;
862     enhit_i += (op->dedx).At(ih);
863     };
864     };
865     //
866     ti->DoTrack2(tr);
867     //
868     if ( fabs(tr->y[0]-oi->ytofpos[0]) < 2. ){
869     for (Int_t ih=0; ih < oi->npmtadc; ih++){
870     Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) );
871     if(pl == 0){
872     nphit_i++;
873     enhit_i += (op->dedx).At(ih);
874     };
875     };
876     };
877     if ( fabs(tr->y[3]-oi->ytofpos[1]) < 2. ){
878     for (Int_t ih=0; ih < oi->npmtadc; ih++){
879     Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) );
880     if(pl == 3){
881     nphit_i++;
882     enhit_i += (op->dedx).At(ih);
883     };
884 pam-fi 1.6 };
885 mocchiut 1.37 };
886     if ( fabs(tr->y[4]-oi->ytofpos[2]) < 2. ){
887     for (Int_t ih=0; ih < oi->npmtadc; ih++){
888     Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) );
889     if(pl == 4){
890     nphit_i++;
891     enhit_i += (op->dedx).At(ih);
892     };
893 pam-fi 1.13 };
894 mocchiut 1.37 };
895    
896 pam-fi 1.6
897 mocchiut 1.37 if(
898 mocchiut 1.46 (use_TOF || use_S1 || use_S2 || use_S3) &&
899 mocchiut 1.37 (nphit_p+nphit_i) !=0 &&
900     true){
901    
902     // printf(" seqno %i nphit_p %i nphit_i %i enhit_p %f enhit_i %f \n",trk2_obj->TrkLevel2::GetSeqNo(i),nphit_p,nphit_i,enhit_p,enhit_i);
903     // printf(" score p %i score i %i \n",tp_score,ti_score);
904     // if( enhit_p > enhit_i ) tp_score++;
905     // if( nphit_p >= nphit_i && enhit_p > enhit_i ) tp_score++;
906     if ( nphit_p > nphit_i ) tp_score++;
907     if ( nphit_p < nphit_i ) ti_score++;
908     if ( nphit_p == nphit_i ){
909     if ( enhit_p > enhit_i ) tp_score++;
910     else ti_score++;
911     };
912     // printf(" dopo score p %i score i %i \n",tp_score,ti_score);
913     };
914     delete tr;
915     //
916     } else {
917     //
918     // NOT a NUCLEUS
919     //
920     //printf(" NOT a NUCLEUS! en = %f \n",sen);
921    
922     Int_t nphit_p =0;
923     Int_t nphit_i =0;
924 pam-fi 1.6
925    
926 mocchiut 1.37 /* cout << "track: npmtadc "<< op->npmtadc << endl;
927     cout << "track: npmttdc "<< op->npmttdc << endl;
928     cout << "image: npmtadc "<< oi->npmtadc << endl;
929     cout << "image: npmttdc "<< oi->npmttdc << endl;*/
930 pam-fi 1.6
931 pam-fi 1.41 // for (Int_t ih=0; ih < op->npmtadc; ih++){
932     // Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) );
933     // if(pl == 1 || pl == 2 || pl == 5)nphit_p++;
934     // };
935    
936     // for (Int_t ih=0; ih < oi->npmtadc; ih++){
937     // Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) );
938     // if(pl == 1 || pl == 2 || pl == 5)nphit_i++;
939     // };
940     // --- modified to count tdc signals (more efficient?)
941     // --- and to implement check on tdcflag
942     for (Int_t ih=0; ih < op->npmttdc; ih++){
943 mocchiut 1.46 Int_t pl = tof_obj->GetPlaneIndex( (op->pmttdc).At(ih) );
944 pam-fi 1.41 // if( (op->tdcflag).At(ih)==0 && (pl == 1 || pl == 2 || pl == 5) )nphit_p++;
945 mocchiut 1.46 if ( (use_S1 && ( pl == 0 || pl == 1 )) || (use_S2 && ( pl == 2 || pl == 3 )) || (use_S3 && ( pl == 4 || pl == 5 )) ){
946     if( (op->tdcflag).At(ih)==0 )nphit_p++;
947     };
948 mocchiut 1.37 };
949 pam-fi 1.6
950 pam-fi 1.41 for (Int_t ih=0; ih < oi->npmttdc; ih++){
951 mocchiut 1.46 Int_t pl = tof_obj->GetPlaneIndex( (oi->pmttdc).At(ih) );
952 pam-fi 1.41 // if( (oi->tdcflag).At(ih)==0 && (pl == 1 || pl == 2 || pl == 5) )nphit_i++;
953 mocchiut 1.46 if ( (use_S1 && ( pl == 0 || pl == 1 )) || (use_S2 && ( pl == 2 || pl == 3 )) || (use_S3 && ( pl == 4 || pl == 5 )) ){
954     if( (oi->tdcflag).At(ih)==0 )nphit_i++;
955     };
956 mocchiut 1.37 };
957 pam-fi 1.6
958 mocchiut 1.37 if(
959     (nphit_p+nphit_i) !=0 &&
960     true){
961 pam-fi 1.6
962 mocchiut 1.46 if ( nphit_p != nphit_i ){
963     totp_score += nphit_p;
964     toti_score += nphit_i;
965 mocchiut 1.47 tp_score+=nphit_p;
966     ti_score+=nphit_i;
967 mocchiut 1.46 };
968 mocchiut 1.47 // if ( nphit_p > nphit_i) tp_score+=nphit_p;
969     // else if( nphit_p < nphit_i) ti_score+=nphit_i;
970     // else ;//niente
971 mocchiut 1.37 };
972     };
973     // cout << "TOF "<<tp_score<<ti_score<<endl;
974     };
975 pam-fi 1.41
976    
977     // if(tp_score == ti_score) use_TRK = true;
978    
979    
980     // -----------------------------------------------------------------------------------------
981 mocchiut 1.37 // tracker check
982 pam-fi 1.41 // -----------------------------------------------------------------------------------------
983 mocchiut 1.37 // chi**2 difference is not always large enough to distinguish among
984     // the real track and its image.
985     // Tracker check will be applied always when calorimeter and tof information is ambiguous.
986 pam-fi 1.41 // *** MODIFIED ON AUGUST 2007 ***
987 mocchiut 1.37 if(use_TRK){
988 pam-fi 1.41 // if( tp->chi2 > 0 && tp->chi2 < ti->chi2 ) tp_score++ ;
989     // else if( ti->chi2 > 0 && ti->chi2 < tp->chi2 ) ti_score++ ;
990    
991     // CHECK 1 : number of points along X
992 mocchiut 1.46 if ( tp->GetNX() >= ti->GetNX() ){
993     tp_score++ ;
994     totp_score++ ;
995     };
996     if ( tp->GetNX() <= ti->GetNX() ){
997     ti_score++ ;
998     toti_score++ ;
999     };
1000 pam-fi 1.41 // CHECK 2 : number of points along Y
1001 mocchiut 1.46 if ( tp->GetNY() >= ti->GetNY() ){
1002     tp_score++ ;
1003     totp_score++ ;
1004     };
1005     if ( tp->GetNY() <= ti->GetNY() ){
1006     ti_score++ ;
1007     toti_score++ ;
1008     };
1009 pam-fi 1.41 // CHECK 3 : chi**2 along X
1010     // if( tp->GetChi2X() > 0 && (tp->GetChi2X() < ti->GetChi2X() || ti->GetChi2X() <=0) ) tp_score++ ;
1011     // if( ti->GetChi2X() > 0 && (ti->GetChi2X() < tp->GetChi2X() || tp->GetChi2X() <=0) ) ti_score++ ;
1012     // CHECK 4 : chi**2 along Y
1013     // if( tp->GetChi2Y() > 0 && (tp->GetChi2Y() < ti->GetChi2Y() || ti->GetChi2Y() <=0) ) tp_score++ ;
1014     // if( ti->GetChi2Y() > 0 && (ti->GetChi2Y() < tp->GetChi2Y() || tp->GetChi2Y() <=0) ) ti_score++ ;
1015     // CHECK 5 : total chi**2
1016     // if( tp->chi2 > 0 && (tp->chi2 < ti->chi2 || ti->chi2 <=0) ) tp_score++ ;
1017     // if( ti->chi2 > 0 && (ti->chi2 < tp->chi2 || tp->chi2 <=0) ) ti_score++ ;
1018    
1019 mocchiut 1.37 // cout << "TRK "<<tp_score<<ti_score<<endl;
1020     };
1021 pam-fi 1.6
1022 pam-fi 1.41
1023    
1024     // *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
1025 mocchiut 1.37 // the winner is....
1026 pam-fi 1.41 // *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
1027 mocchiut 1.37 if (tp_score > ti_score) {
1028 pam-fi 1.41
1029 mocchiut 1.37
1030     }else if (tp_score < ti_score) {
1031    
1032    
1033     ts = ti;//its image!!
1034     cs = ci;
1035     os = oi;
1036    
1037     ti = tp;//its image!!
1038     ci = cp;
1039     oi = op;
1040    
1041     tp = ts;//its image!!
1042     cp = cs;
1043     op = os;
1044 pam-fi 1.13
1045    
1046 mocchiut 1.37 }else {
1047 pam-fi 1.41
1048 pam-fi 1.39 // cout << "Warning - track image ambiguity not solved" << endl;
1049 pam-fi 1.41
1050 mocchiut 1.37 };
1051 pam-fi 1.6
1052 mocchiut 1.37 }else{
1053 mocchiut 1.46 totp_score = 1;
1054     toti_score = 0;
1055    
1056 mocchiut 1.37 // ts = tp;
1057     // cs = cp;
1058     // os = op;
1059     };
1060    
1061     // cout <<" SortTracks() "<<i<<" -- "<<ts<<endl;
1062     // sorted_tracks->Add(ts);//save the track in the sorted array
1063     // sorted_tracks.Add(ts);//save the track in the sorted array
1064     // sorted_tracks.Add(tp);//save the track in the sorted array
1065     // cout << "SortTracks:: sorted_tracks->Add(it) "<<i<<" "<<ts<<endl;
1066     // cout<<"o "<<tp<<endl;
1067     // cout<<"o "<<cp<<endl;
1068     // cout<<"o "<<op<<endl;
1069 mocchiut 1.46
1070 mocchiut 1.37 new(ttsorted[i]) PamTrack(tp,cp,op);
1071     new(ttimage[i]) PamTrack(ti,ci,oi);
1072 mocchiut 1.46
1073     ((PamTrack*)(ttsorted[i]))->SetPScore(totp_score);
1074     ((PamTrack*)(ttimage[i]))->SetIScore(toti_score);
1075 mocchiut 1.37 };
1076    
1077     if( tsorted->GetEntries() != trk2_obj->GetNTracks() ){
1078     cout << "void PamLevel2::SortTracks(): tsorted->GetEntries() "<<tsorted->GetEntries()<<" != trk2_obj->GetNTracks() = "<<trk2_obj->GetNTracks() <<endl;
1079     tsorted->Delete(); tsorted=0;
1080     timage->Delete(); timage=0;
1081     }
1082    
1083     //Restore Object count
1084     //To save space in the table keeping track of all referenced objects
1085     //We reset the object count to what it was at the beginning of the event.
1086     TProcessID::SetObjectCount(ObjectNumber);
1087 pam-fi 1.6
1088 pam-fi 1.1 };
1089     //--------------------------------------
1090     //
1091     //
1092     //--------------------------------------
1093     /**
1094 pam-fi 1.2 * This method overrides TrkLevel2::GetTracks(), where sorting is done by decreasing number of fit points and increasing chi^2.
1095     * PamLevel2::GetTracks() keeps the same track order given by TrkLevel2::GetTracks(), but checks image selection by using calorimeter and ToF tracking information.
1096     */
1097 pam-fi 1.13 // TRefArray *PamLevel2::GetTracks(){
1098    
1099     // // *-*-*-*-*-*-*-*-*-*-*-*-*
1100     // SortTracks("+CAL+TOF");
1101     // // *-*-*-*-*-*-*-*-*-*-*-*-*
1102    
1103     // // return sorted_tracks;
1104     // return &sorted_tracks;
1105    
1106     // };
1107     TClonesArray *PamLevel2::GetTracks(){
1108 pam-fi 1.8
1109     // *-*-*-*-*-*-*-*-*-*-*-*-*
1110 mocchiut 1.37 SortTracks();
1111 pam-fi 1.8 // *-*-*-*-*-*-*-*-*-*-*-*-*
1112    
1113 pam-fi 1.13 return tsorted;
1114    
1115 pam-fi 1.2 };
1116     //--------------------------------------
1117 pam-fi 1.3 //
1118     //
1119 pam-fi 1.2 //--------------------------------------
1120     /**
1121 pam-fi 1.1 * Retrieves the it-th Pamela "physical" track.
1122     * It override TrkLevel2::GetTrack(int it).
1123     * @param it Track number, ranging from 0 to GetNTracks().
1124     */
1125     PamTrack *PamLevel2::GetTrack(int it){
1126 pam-fi 1.13
1127     // if(!trk2_obj) return 0;
1128 pam-fi 1.3
1129 mocchiut 1.37 // // *-*-*-*+-*-*-*-*-*-*-*-*-*
1130 pam-fi 1.13 // SortTracks("+CAL+TOF");
1131     // // *-*-*-*-*-*-*-*-*-*-*-*-*
1132     // // if(!sorted_tracks)return 0;
1133     // if(sorted_tracks.IsEmpty())return 0;
1134    
1135     // PamTrack *track = 0;
1136    
1137     // if( it >=0 && it < trk2_obj->TrkLevel2::GetNTracks() && it<sorted_tracks.GetEntriesFast() ){
1138     // TrkTrack *t = (TrkTrack*)sorted_tracks.At(it);
1139     // track = GetPamTrackAlong(t);
1140     // }else{
1141     // cout << "PamLevel2::GetTrack(int) : tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<trk2_obj->TrkLevel2::GetNTracks()<<")"<<endl;
1142     // };
1143    
1144     // return track;
1145    
1146     // cout << "PamLevel2::GetTrack(int it) "<<endl;
1147 pam-fi 1.8 // *-*-*-*-*-*-*-*-*-*-*-*-*
1148 mocchiut 1.37 SortTracks();
1149 pam-fi 1.8 // *-*-*-*-*-*-*-*-*-*-*-*-*
1150 pam-fi 1.13 if(!tsorted)return 0;
1151     if(!tsorted->GetEntries())return 0;
1152    
1153 pam-fi 1.6 PamTrack *track = 0;
1154    
1155 pam-fi 1.13 if( it >=0 && it < trk2_obj->TrkLevel2::GetNTracks()){
1156     // TrkTrack *t = (TrkTrack*)sorted_tracks.At(it);
1157     // track = GetPamTrackAlong(t);
1158     TClonesArray &t = *(tsorted);
1159     track = (PamTrack*)t[it];
1160    
1161 pam-fi 1.6 }else{
1162 pam-fi 1.13 cout << "PamLevel2::GetTrack(int) : tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<trk2_obj->TrkLevel2::GetNTracks()<<")"<<endl;
1163 pam-fi 1.6 };
1164    
1165     return track;
1166    
1167 pam-fi 1.1 };
1168 pam-fi 1.3
1169 pam-fi 1.1 //--------------------------------------
1170     //
1171     //
1172     //--------------------------------------
1173     /**
1174 pam-fi 1.3 * Retrieves (if present) the image of the it-th Pamela "physical" track, sorted by the method PamLevel2::SortTracks().
1175 pam-fi 1.1 * @param it Track number, ranging from 0 to GetNTracks().
1176     */
1177     PamTrack *PamLevel2::GetTrackImage(int it){
1178    
1179 pam-fi 1.13 // if(!trk2_obj) return 0;
1180    
1181     // // *-*-*-*-*-*-*-*-*-*-*-*-*
1182     // SortTracks("+CAL+TOF");
1183     // // *-*-*-*-*-*-*-*-*-*-*-*-*
1184     // // if(!sorted_tracks)return 0;
1185     // if(sorted_tracks.IsEmpty())return 0;
1186    
1187     // PamTrack *image = 0;
1188    
1189     // if( it >=0 && it < trk2_obj->TrkLevel2::GetNTracks() ){
1190     // TrkTrack *temp = (TrkTrack*)sorted_tracks.At(it);
1191     // if( temp->HasImage() ){
1192     // TrkTrack *t = trk2_obj->TrkLevel2::GetStoredTrack(temp->GetImageSeqNo());
1193     // image = GetPamTrackAlong(t);
1194     // }else{
1195     // cout <<"PamLevel2::GetTrackImage(int) : Track SeqNo "<<it<<" does not have image"<<endl;
1196     // };
1197     // }else{
1198     // cout << "PamLevel2::GetTrackImage(int) : Tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<trk2_obj->TrkLevel2::GetNTracks()<<")"<<endl;
1199     // };
1200    
1201     // return image;
1202    
1203    
1204 pam-fi 1.8 // *-*-*-*-*-*-*-*-*-*-*-*-*
1205 mocchiut 1.37 SortTracks();
1206 pam-fi 1.8 // *-*-*-*-*-*-*-*-*-*-*-*-*
1207 pam-fi 1.13 if(!timage)return 0;
1208     if(!timage->GetEntries())return 0;
1209 pam-fi 1.8
1210     PamTrack *image = 0;
1211    
1212 pam-fi 1.13 if( it >=0 && it < trk2_obj->TrkLevel2::GetNTracks() ){
1213     TClonesArray &t = *(tsorted);
1214     PamTrack *temp = (PamTrack*)t[it];
1215     if( temp->GetTrkTrack()->HasImage() ){
1216     TClonesArray &t = *(timage);
1217     image = (PamTrack*)t[it];
1218 pam-fi 1.2 }else{
1219 pam-fi 1.13 // cout <<"PamLevel2::GetTrackImage(int) : Track SeqNo "<<it<<" does not have image"<<endl;
1220 pam-fi 1.1 };
1221 pam-fi 1.8 }else{
1222 pam-fi 1.13 cout << "PamLevel2::GetTrackImage(int) : Tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<trk2_obj->TrkLevel2::GetNTracks()<<")"<<endl;
1223 pam-fi 1.8 };
1224 pam-fi 1.1
1225 pam-fi 1.8 return image;
1226 pam-fi 1.1 }
1227    
1228     //--------------------------------------
1229     //
1230     //
1231     //--------------------------------------
1232     /**
1233 pam-fi 1.2 * Get the Pamela detector trees in a single file and make them friends.
1234     * @param f TFile pointer
1235     * @param detlist String to select trees to be included
1236     * @return Pointer to a TTree
1237 pam-fi 1.1 */
1238 pam-fi 1.11 TTree *PamLevel2::GetPamTree(TFile *f, TString detlist ){
1239 pam-fi 1.4
1240 pam-fi 1.12 // if( !detlist.IsNull() ) SetWhichTrees(detlist);
1241     // else GetWhichTrees(f);
1242 mocchiut 1.35 if ( pam_tree ){
1243     printf("WARNING: TTree *PamLevel2::GetPamTree(TFile *fl, TString detlist) -- pam_tree already exists!\n ");
1244     return pam_tree;
1245     };
1246     //
1247    
1248 pam-fi 1.20 cout << "TTree *PamLevel2::GetPamTree(TFile *f, TString detlist ) -- obsolte "<<endl;
1249    
1250 pam-fi 1.12 SetWhichTrees(detlist);
1251 pam-fi 1.9
1252 pam-fi 1.6 TTree *Trout =0;
1253 pam-fi 1.9
1254     TString fname = f->GetName();
1255     if(!CheckLevel2File(fname))return NULL;
1256    
1257 pam-fi 1.20 // UInt_t *found=0;
1258 pam-fi 1.11
1259 pam-fi 1.12 cout<< "GetPamTree(TFile*,TString): detector list --> ";
1260     if(TRK1)cout<<"TRK1 ";
1261     if(TRK2)cout<<"TRK2 ";
1262     if(TRKh)cout<<"TRKH ";
1263     if(CAL1)cout<<"CAL1 ";
1264     if(CAL2)cout<<"CAL2 ";
1265     if(TOF)cout<<"TOF ";
1266     if(TRG)cout<<"TRG ";
1267     if(AC)cout<<"AC ";
1268     if(ND)cout<<"ND ";
1269     if(S4)cout<<"S4 ";
1270     if(ORB)cout<<"ORB ";
1271     cout << endl;
1272 pam-fi 1.20 if(SELLI)cout<<">>> Found selection-list <<<"<<endl;
1273 pam-fi 1.12
1274     f->cd();
1275    
1276 pam-fi 1.4 // Tracker
1277 pam-fi 1.1 TTree *T = (TTree*)f->Get("Tracker");
1278 pam-fi 1.8 if(T && (TRK2||TRK1||TRKh)) {
1279 pam-fi 1.9 if(TRK2)T->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2"));
1280 pam-fi 1.20 // else T->SetBranchStatus("TrkLevel2",0,found);
1281 pam-fi 1.8 if(TRK2)cout << "Tracker : set branch address TrkLevel2"<<endl;
1282 pam-fi 1.9 if(TRK1)T->SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1"));
1283 pam-fi 1.20 // else T->SetBranchStatus("TrkLevel1",0,found);
1284 pam-fi 1.8 if(TRK1)cout << "Tracker : set branch address TrkLevel1"<<endl;
1285 pam-fi 1.9 if(TRKh)T->SetBranchAddress("TrkHough", GetPointerTo("TrkHough"));
1286 pam-fi 1.20 // else T->SetBranchStatus("TrkHough",0,found);
1287 pam-fi 1.9 if(TRKh)cout << "Tracker : set branch address TrkHough"<<endl;
1288     if(!Trout)Trout=T;
1289     else Trout->AddFriend(T);
1290 pam-fi 1.1 }else{
1291     cout << "Tracker : missing tree"<<endl;
1292     };
1293     // Calorimeter
1294     TTree *C = (TTree*)f->Get("Calorimeter");
1295 pam-fi 1.9 if(C && (CAL2||CAL1)) {
1296     if(CAL2)C->SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2"));
1297 pam-fi 1.20 // else C->SetBranchStatus("CaloLevel2",0,found);
1298 pam-fi 1.9 if(CAL2)cout << "Calorimeter : set branch address CaloLevel2"<<endl;
1299     if(CAL1)C->SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1"));
1300 pam-fi 1.20 // else C->SetBranchStatus("CaloLevel1",0,found);
1301 pam-fi 1.9 if(CAL1)cout << "Calorimeter : set branch address CaloLevel1"<<endl;
1302 pam-fi 1.4 if(!Trout)Trout=C;
1303     else Trout->AddFriend(C);
1304 pam-fi 1.1 }else{
1305     cout << "Calorimeter : missing tree"<<endl;
1306     };
1307 pam-fi 1.12
1308 pam-fi 1.1 // ToF
1309     TTree *O = (TTree*)f->Get("ToF");
1310 pam-fi 1.2 if(O && TOF) {
1311 pam-fi 1.9 O->SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2"));
1312 pam-fi 1.1 cout << "ToF : set branch address ToFLevel2"<<endl;
1313 pam-fi 1.4 if(!Trout)Trout=O;
1314     else Trout->AddFriend(O);
1315 pam-fi 1.1 }else{
1316     cout << "ToF : missing tree"<<endl;
1317     };
1318     // Trigger
1319     TTree *R = (TTree*)f->Get("Trigger");
1320 pam-fi 1.2 if(R && TRG) {
1321 pam-fi 1.9 R->SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2"));
1322 pam-fi 1.1 cout << "Trigger : set branch address TrigLevel2"<<endl;
1323 mocchiut 1.35 if(!Trout)Trout=R;
1324 pam-fi 1.4 else Trout->AddFriend(R);
1325 pam-fi 1.1 }else{
1326     cout << "Trigger : missing tree"<<endl;
1327     };
1328     // S4
1329     TTree *S = (TTree*)f->Get("S4");
1330 pam-fi 1.2 if(S && S4) {
1331 pam-fi 1.9 S->SetBranchAddress("S4Level2", GetPointerTo("S4Level2"));
1332 pam-fi 1.1 cout << "S4 : set branch address S4Level2"<<endl;
1333 mocchiut 1.35 if(!Trout)Trout=S;
1334 pam-fi 1.4 else Trout->AddFriend(S);
1335 pam-fi 1.1 }else{
1336     cout << "S4 : missing tree"<<endl;
1337     };
1338     // Neutron Detector
1339     TTree *N = (TTree*)f->Get("NeutronD");
1340 pam-fi 1.2 if(N && ND) {
1341 pam-fi 1.9 N->SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2"));
1342 pam-fi 1.1 cout << "NeutronD : set branch address NDLevel2"<<endl;
1343 mocchiut 1.35 if(!Trout)Trout=N;
1344 pam-fi 1.4 else Trout->AddFriend(N);
1345 pam-fi 1.1 }else{
1346     cout << "NeutronD : missing tree"<<endl;
1347     };
1348     // Anticounters
1349     TTree *A = (TTree*)f->Get("Anticounter");
1350 pam-fi 1.2 if(A && AC) {
1351 pam-fi 1.9 A->SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2"));
1352 pam-fi 1.1 cout << "Anticounter : set branch address AcLevel2"<<endl;
1353 mocchiut 1.35 if(!Trout)Trout=A;
1354 pam-fi 1.4 else Trout->AddFriend(A);
1355 pam-fi 1.1 }else{
1356     cout << "Anticounter : missing tree"<<endl;
1357     };
1358 pam-fi 1.2 // Orbital Info
1359 pam-fi 1.11 TTree *B = (TTree*)f->Get("OrbitalInfo");
1360     if(B && ORB) {
1361     B->SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo"));
1362     cout << "OrbitalInfo : set branch address OrbitalInfo"<<endl;
1363 mocchiut 1.35 if(!Trout)Trout=B;
1364 pam-fi 1.11 else Trout->AddFriend(B);
1365     }else{
1366     cout << "OrbitalInfo : missing tree"<<endl;
1367     };
1368 pam-fi 1.20
1369     TTree *L = (TTree*)f->Get("SelectionList");
1370     if(L && SELLI==1) {
1371     // L->SetBranchAddress("RunEntry",&irun);
1372     // cout << "SelectionList: set branch address RunEntry"<<endl;
1373     // L->SetBranchAddress("EventEntry",&irunentry);
1374     // cout << "SelectionList: set branch address EventEntry"<<endl;
1375     // if(!Trout)Trout=O;
1376     // else Trout->AddFriend("SelectionList");
1377     cout << " TTree *PamLevel2::GetPamTree(TFile, TString) >>> SelectionList not implemente!!!!"<<endl;
1378     sel_tree = 0;
1379     }else{
1380     cout << "SelectionList : missing tree"<<endl;
1381     };
1382 pam-fi 1.11
1383     cout<<endl<<" Number of entries: "<<Trout->GetEntries()<<endl<<endl;
1384 mocchiut 1.28
1385     pam_tree = (TChain*)Trout;
1386 pam-fi 1.1
1387 pam-fi 1.11 return Trout;
1388 pam-fi 1.1
1389     }
1390 pam-fi 1.2 //--------------------------------------
1391     //
1392     //
1393     //--------------------------------------
1394     /**
1395     * Get list of Level2 files.
1396     * @param ddir Level2 data directory.
1397     * @param flisttxt Name of txt file containing file list.
1398     * @return Pointer to a TList of TSystemFiles
1399     * If no input file list is given , all the Level2 files inside the directory are processed.
1400     */
1401     TList* PamLevel2::GetListOfLevel2Files(TString ddir, TString flisttxt = ""){
1402    
1403 pam-fi 1.6 TString wdir = gSystem->WorkingDirectory();
1404    
1405 mocchiut 1.35 // if(ddir=="")ddir = wdir;
1406 pam-fi 1.6 // TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir);
1407 mocchiut 1.35 if ( ddir != ""){
1408     cout << "Level2 data directory : "<< ddir << endl;
1409     } else {
1410     cout << "Level2 data directory not given as input: trying to evaluate from list or taking working directory " << endl;
1411     };
1412 pam-fi 1.6 TList *contents = new TList; // create output list
1413     contents->SetOwner();
1414    
1415 pam-fi 1.16 // char *fullpath;
1416 pam-fi 1.18 // const char *fullpath;
1417 pam-fi 1.6
1418 pam-fi 1.26 // if no input file list is given:
1419 pam-fi 1.6 if ( flisttxt != "" ){
1420 pam-fi 1.2
1421 pam-fi 1.16 // if( !gSystem->IsFileInIncludePath(flisttxt,&fullpath) ){
1422 pam-fi 1.18 // if( !(fullpath = gSystem->FindFile("./",flisttxt)) ){
1423     // cout <<"File "<<flisttxt<<" not found"<<endl;
1424     // return 0;
1425     // }
1426     // flisttxt = fullpath;
1427 mocchiut 1.28 if ( !flisttxt.EndsWith(".root") ){
1428 pam-fi 1.18
1429     flisttxt = gSystem->ConcatFileName(gSystem->DirName(flisttxt),gSystem->BaseName(flisttxt));
1430 pam-fi 1.16
1431 pam-fi 1.11 if( !gSystem->ChangeDirectory(ddir) ){
1432     cout << "Cannot change directory : "<<ddir<<endl;
1433     return 0;
1434     }
1435 pam-fi 1.2
1436 pam-fi 1.6 cout <<"Input file list : " << flisttxt <<endl;
1437     ifstream in;
1438     in.open(flisttxt, ios::in); //open input file list
1439 pam-fi 1.18 if(!in.good()){
1440     cout <<" ERROR opening the file "<<endl;
1441     gSystem->ChangeDirectory(wdir); // back to the working directory
1442     return 0;
1443     }
1444 pam-fi 1.9 int line=0;
1445 pam-fi 1.6 while (1) {
1446     TString file;
1447     in >> file;
1448     if (!in.good()) break;
1449 pam-fi 1.9 line++;
1450 pam-fi 1.8 // cout <<"(1) " << file << endl;
1451 pam-fi 1.9 if(file.IsNull()){
1452     cout << "-- list interrupted at line "<<line <<endl;
1453     break;
1454     }
1455 pam-fi 1.10 if(file.Contains("#"))file = file(0,file.First("#"));
1456     // cout <<"(2) " << file << endl;
1457 pam-fi 1.16 // if( gSystem->IsFileInIncludePath(file,&fullpath) ){
1458 pam-fi 1.18 // if( (fullpath = gSystem->FindFile(ddir,file)) ){
1459 pam-fi 1.19 if( file.EndsWith(".root") ){
1460 mocchiut 1.35 TString filedir;
1461     if (ddir != ""){
1462     filedir = ddir; // take the input dir
1463     } else {
1464     gSystem->ChangeDirectory(wdir); // back to the working directory
1465     filedir = gSystem->DirName(file); // this will take the path if exist in the list otherwise it will return automatically the working dir
1466     };
1467     char *fullpath = gSystem->ConcatFileName(gSystem->DirName(filedir),gSystem->BaseName(file));
1468 pam-fi 1.19 contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));// add file to the list
1469     delete fullpath;
1470     }
1471 pam-fi 1.18 // }else{
1472 pam-fi 1.10 // if(file.Data()!="")cout << "File: "<<file<<" ---> missing "<< endl;
1473 pam-fi 1.18 // };
1474 pam-fi 1.6 };
1475     in.close();
1476 mocchiut 1.28 } else {
1477 mocchiut 1.35 if(flisttxt.Contains("#"))flisttxt = flisttxt(0,flisttxt.First("#"));
1478 mocchiut 1.28 char *fullpath = gSystem->ConcatFileName(gSystem->DirName(flisttxt),gSystem->BaseName(flisttxt));
1479     contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));// add file to the list
1480     delete fullpath;
1481     };
1482 pam-fi 1.6 }else{
1483 pam-fi 1.2
1484 pam-fi 1.6 cout << "No input file list given."<<endl;
1485     cout << "Check for existing root files."<<endl;
1486 pam-fi 1.2 // cout << "Warking directory: "<< gSystem->WorkingDirectory()<< endl;
1487 mocchiut 1.35 if ( ddir == "" ){
1488     ddir = wdir;
1489     cout << "Level2 data directory : "<< ddir << endl;
1490     };
1491    
1492 pam-fi 1.6 TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir);
1493     TList *temp = datadir->GetListOfFiles();
1494 pam-fi 1.2 // temp->Print();
1495     // cout << "*************************************" << endl;
1496    
1497 pam-fi 1.6 TIter next(temp);
1498     TSystemFile *questo = 0;
1499    
1500    
1501     while ( (questo = (TSystemFile*) next()) ) {
1502     TString name = questo-> GetName();
1503     if( name.EndsWith(".root") ){
1504 pam-fi 1.18 // const char *fullpath = gSystem->FindFile(ddir,name);
1505 pam-fi 1.16 // char *fullpath;
1506     // gSystem->IsFileInIncludePath(name,&fullpath);
1507 pam-fi 1.18 char *fullpath = gSystem->ConcatFileName(gSystem->DirName(ddir),gSystem->BaseName(name));
1508 pam-fi 1.6 contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));
1509 pam-fi 1.18 delete fullpath;
1510 pam-fi 1.6 };
1511     }
1512     delete temp;
1513     delete datadir;
1514    
1515     };
1516     gSystem->ChangeDirectory(wdir); // back to the working directory
1517 pam-fi 1.5 // cout << endl << "Selected files:" << endl;
1518     // contents->Print();
1519 pam-fi 1.18 cout << contents->GetEntries()<<" files \n";
1520 pam-fi 1.5 // cout << endl;
1521 pam-fi 1.4 // cout << "Working directory: "<< gSystem->WorkingDirectory()<< endl;
1522 pam-fi 1.6 return contents;
1523 pam-fi 1.2 };
1524     //--------------------------------------
1525     //
1526     //
1527     //--------------------------------------
1528     /**
1529     * Get the Pamela detector chains from a list of files and make them friends.
1530     * @param fl Pointer to a TList of TSystemFiles
1531     * @param detlist String to select trees to be included
1532     * @return Pointer to a TChain
1533     */
1534 pam-fi 1.11 TChain *PamLevel2::GetPamTree(TList *fl, TString detlist ){
1535 mocchiut 1.35 //
1536     //
1537     //
1538     if ( pam_tree ){
1539     printf("WARNING: TChain *PamLevel2::GetPamTree(TList *fl, TString detlist) -- pam_tree already exists!\n ");
1540     return pam_tree;
1541     };
1542     //
1543 pam-fi 1.11
1544     TChain *Trout =0;
1545 pam-fi 1.2
1546 pam-fi 1.12 // if( !detlist.IsNull() )SetWhichTrees(detlist);
1547     SetWhichTrees(detlist);
1548 pam-fi 1.6
1549 pam-fi 1.13 cout<< "GetPamTree(TList*,TString): input detector list --> ";
1550 pam-fi 1.12 if(TRK1)cout<<"TRK1 ";
1551     if(TRK2)cout<<"TRK2 ";
1552     if(TRKh)cout<<"TRKH ";
1553     if(CAL1)cout<<"CAL1 ";
1554     if(CAL2)cout<<"CAL2 ";
1555     if(TOF)cout<<"TOF ";
1556     if(TRG)cout<<"TRG ";
1557     if(AC)cout<<"AC ";
1558     if(ND)cout<<"ND ";
1559     if(S4)cout<<"S4 ";
1560     if(ORB)cout<<"ORB ";
1561     cout << endl;
1562    
1563 mocchiut 1.35 TChain *T = 0;
1564     TChain *C = 0;
1565     TChain *O = 0;
1566     TChain *R = 0;
1567     TChain *S = 0;
1568     TChain *N = 0;
1569     TChain *A = 0;
1570     TChain *B = 0;
1571 pam-fi 1.20
1572 mocchiut 1.35 TChain *L = 0;
1573 pam-fi 1.6
1574 pam-fi 1.8 if(TRK2||TRK1||TRKh) T = new TChain("Tracker");
1575 pam-fi 1.11 if(CAL2||CAL1) C = new TChain("Calorimeter");
1576     if(TOF) O = new TChain("ToF");
1577     if(TRG) R = new TChain("Trigger");
1578     if(S4) S = new TChain("S4");
1579     if(ND) N = new TChain("NeutronD");
1580     if(AC) A = new TChain("Anticounter");
1581     if(ORB) B = new TChain("OrbitalInfo");
1582 pam-fi 1.20 L = new TChain("SelectionList");
1583 pam-fi 1.6
1584     // loop over files and create chains
1585     TIter next(fl);
1586     TSystemFile *questo = 0;
1587     while ( (questo = (TSystemFile*) next()) ) {
1588     TString name = questo->GetName();
1589 pam-fi 1.13 cout << "File: "<< name << endl;
1590 pam-fi 1.6 if( CheckLevel2File(name) ){
1591 pam-fi 1.8 if(TRK2||TRK1||TRKh) T->Add(name);
1592 pam-fi 1.11 if(CAL1||CAL2) C->Add(name);
1593     if(TOF) O->Add(name);
1594     if(TRG) R->Add(name);
1595     if(S4) S->Add(name);
1596     if(ND) N->Add(name);
1597     if(AC) A->Add(name);
1598     if(ORB) B->Add(name);
1599 pam-fi 1.20 if(SELLI==1) L->Add(name);
1600 pam-fi 1.4 };
1601 mocchiut 1.35 };
1602 pam-fi 1.6
1603     cout << "done chain \n";
1604 pam-fi 1.36 cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
1605 pam-fi 1.11
1606 pam-fi 1.20 // UInt_t *found=0;
1607 pam-fi 1.11 // Tracker
1608     if(T && (TRK2||TRK1||TRKh)) {
1609     if(TRK2)T->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2"));
1610 pam-fi 1.20 // else T->SetBranchStatus("TrkLevel2",0,found);
1611 pam-fi 1.11 if(TRK2)cout << "Tracker : set branch address TrkLevel2"<<endl;
1612     if(TRK1)T->SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1"));
1613 pam-fi 1.20 // else T->SetBranchStatus("TrkLevel1",0,found);
1614 pam-fi 1.11 if(TRK1)cout << "Tracker : set branch address TrkLevel1"<<endl;
1615     if(TRKh)T->SetBranchAddress("TrkHough", GetPointerTo("TrkHough"));
1616 pam-fi 1.20 // else T->SetBranchStatus("TrkHough",0,found);
1617 pam-fi 1.11 if(TRKh)cout << "Tracker : set branch address TrkHough"<<endl;
1618     if(!Trout)Trout=T;
1619 mocchiut 1.35 else Trout->AddFriend("Tracker");
1620 pam-fi 1.11 }else{
1621     cout << "Tracker : missing tree"<<endl;
1622     };
1623 pam-fi 1.6 // Calorimeter
1624 pam-fi 1.11 if(C && (CAL2||CAL1)) {
1625     if(CAL2)C->SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2"));
1626 pam-fi 1.20 // else C->SetBranchStatus("CaloLevel2",0,found);
1627 pam-fi 1.11 if(CAL2)cout << "Calorimeter : set branch address CaloLevel2"<<endl;
1628     if(CAL1)C->SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1"));
1629 pam-fi 1.20 // else C->SetBranchStatus("CaloLevel1",0,found);
1630 pam-fi 1.11 if(CAL1)cout << "Calorimeter : set branch address CaloLevel1"<<endl;
1631     if(!Trout)Trout=C;
1632     else Trout->AddFriend("Calorimeter");
1633     }else{
1634     cout << "Calorimeter : missing tree"<<endl;
1635 pam-fi 1.6 };
1636 pam-fi 1.4 // ToF
1637 pam-fi 1.11 if(O && TOF) {
1638     O->SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2"));
1639     cout << "ToF : set branch address ToFLevel2"<<endl;
1640     if(!Trout)Trout=O;
1641     else Trout->AddFriend("ToF");
1642     }else{
1643     cout << "ToF : missing tree"<<endl;
1644 pam-fi 1.6 };
1645 pam-fi 1.4 // Trigger
1646 pam-fi 1.11 if(R && TRG) {
1647     R->SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2"));
1648     cout << "Trigger : set branch address TrigLevel2"<<endl;
1649     if(!Trout)Trout=O;
1650     else Trout->AddFriend("Trigger");
1651     }else{
1652     cout << "Trigger : missing tree"<<endl;
1653 pam-fi 1.6 };
1654 pam-fi 1.4 // S4
1655 pam-fi 1.11 if(S && S4) {
1656     S->SetBranchAddress("S4Level2", GetPointerTo("S4Level2"));
1657     cout << "S4 : set branch address S4Level2"<<endl;
1658     if(!Trout)Trout=O;
1659     else Trout->AddFriend("S4");
1660     }else{
1661     cout << "S4 : missing tree"<<endl;
1662 pam-fi 1.6 };
1663 pam-fi 1.4 // Neutron Detector
1664 pam-fi 1.11 if(N && ND) {
1665     N->SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2"));
1666     cout << "NeutronD : set branch address NDLevel2"<<endl;
1667     if(!Trout)Trout=O;
1668     else Trout->AddFriend("NeutronD");
1669     }else{
1670     cout << "NeutronD : missing tree"<<endl;
1671 pam-fi 1.6 };
1672 pam-fi 1.4 // Anticounters
1673 pam-fi 1.11 if(A && AC) {
1674     A->SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2"));
1675     cout << "Anticounter : set branch address AcLevel2"<<endl;
1676     if(!Trout)Trout=O;
1677     else Trout->AddFriend("Anticounter");
1678     }else{
1679     cout << "Anticounter : missing tree"<<endl;
1680 pam-fi 1.6 };
1681 pam-fi 1.11 // Orbital Info
1682     if(B && ORB) {
1683     B->SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo"));
1684     cout << "OrbitalInfo : set branch address OrbitalInfo"<<endl;
1685     if(!Trout)Trout=O;
1686     else Trout->AddFriend("OrbitalInfo");
1687     }else{
1688     cout << "OrbitalInfo : missing tree"<<endl;
1689 pam-fi 1.6 };
1690 pam-fi 1.36 cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
1691 pam-fi 1.20
1692     // Selection List
1693     if(L && SELLI==1) {
1694     cout<<">>> Found selection-list <<<"<<endl;
1695     L->SetBranchAddress("RunEntry",&irun);
1696     cout << "SelectionList: set branch address RunEntry"<<endl;
1697     L->SetBranchAddress("EventEntry",&irunentry);
1698     cout << "SelectionList: set branch address EventEntry"<<endl;
1699     sel_tree = L;
1700     // if(!Trout)Trout=O;
1701     // else Trout->AddFriend("SelectionList");
1702 pam-fi 1.36 cout << "----------------------------------------------------" <<endl;
1703 pam-fi 1.20 }else{
1704     // cout << "SelectionList : missing tree"<<endl;
1705     if(L)L->Delete();
1706     };
1707 pam-fi 1.6
1708 pam-fi 1.11 // cout<<endl<<" Number of entries: "<<Trout->GetEntries()<<endl<<endl;
1709    
1710 pam-fi 1.20 pam_tree = Trout;
1711    
1712 pam-fi 1.11 return Trout;
1713 pam-fi 1.4 }
1714 pam-fi 1.8
1715    
1716    
1717 pam-fi 1.4 //--------------------------------------
1718     //
1719     //
1720     //--------------------------------------
1721     /**
1722     * Set branch addresses for Pamela friend trees
1723     */
1724 pam-fi 1.8 void PamLevel2::SetBranchAddress(TTree *t){
1725    
1726     TRK2 = TRK2 & t->GetBranchStatus("TrkLevel2");
1727     TRK1 = TRK1 & t->GetBranchStatus("TrkLevel1");
1728     TRKh = TRKh & t->GetBranchStatus("TrkHough");
1729     CAL2 = CAL2 & t->GetBranchStatus("CaloLevel2");
1730     CAL1 = CAL1 & t->GetBranchStatus("CaloLevel1");
1731     TOF = TOF & t->GetBranchStatus("ToFLevel2");
1732     TRG = TRG & t->GetBranchStatus("TrigLevel2");
1733     S4 = S4 & t->GetBranchStatus("S4Level2");
1734     ND = ND & t->GetBranchStatus("NDLevel2");
1735     AC = AC & t->GetBranchStatus("AcLevel2");
1736     ORB = ORB & t->GetBranchStatus("OrbitalInfo");
1737    
1738    
1739 pam-fi 1.4 // Tracker
1740 pam-fi 1.8 if(TRK1) {
1741 pam-fi 1.9 t->SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel2"));
1742 pam-fi 1.8 cout << "Tracker : set branch address TrkLevel1"<<endl;
1743     };
1744     if(TRK2) {
1745 pam-fi 1.9 t->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel1"));
1746 pam-fi 1.6 cout << "Tracker : set branch address TrkLevel2"<<endl;
1747     };
1748 pam-fi 1.8 if(TRKh) {
1749 pam-fi 1.9 t->SetBranchAddress("TrkHough", GetPointerTo("TrkHough"));
1750 pam-fi 1.8 cout << "Tracker : set branch address TrkHough"<<endl;
1751     };
1752 pam-fi 1.6
1753     // Calorimeter
1754 pam-fi 1.8 if(CAL1) {
1755 pam-fi 1.9 t->SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1"));
1756 pam-fi 1.8 cout << "Calorimeter : set branch address CaloLevel1"<<endl;
1757     };
1758     if(CAL2) {
1759 pam-fi 1.9 t->SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2"));
1760 pam-fi 1.6 cout << "Calorimeter : set branch address CaloLevel2"<<endl;
1761     };
1762    
1763 pam-fi 1.4 // ToF
1764 pam-fi 1.6 if(TOF) {
1765 pam-fi 1.9 t->SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2"));
1766 pam-fi 1.6 cout << "ToF : set branch address ToFLevel2"<<endl;
1767     };
1768 pam-fi 1.4 // Trigger
1769 pam-fi 1.6 if(TRG) {
1770 pam-fi 1.9 t->SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2"));
1771 pam-fi 1.6 cout << "Trigger : set branch address TrigLevel2"<<endl;
1772     };
1773 pam-fi 1.4 // S4
1774 pam-fi 1.6 if(S4) {
1775 pam-fi 1.9 t->SetBranchAddress("S4Level2", GetPointerTo("S4Level2"));
1776 pam-fi 1.6 cout << "S4 : set branch address S4Level2"<<endl;
1777     };
1778 pam-fi 1.4 // Neutron Detector
1779 pam-fi 1.6 if(ND) {
1780 pam-fi 1.9 t->SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2"));
1781 pam-fi 1.6 cout << "NeutronD : set branch address NDLevel2"<<endl;
1782     };
1783 pam-fi 1.4 // Anticounters
1784 pam-fi 1.6 if(AC) {
1785 pam-fi 1.9 t->SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2"));
1786 pam-fi 1.6 cout << "Anticounter : set branch address AcLevel2"<<endl;
1787     };
1788 pam-fi 1.4 // OrbitalInfo
1789 pam-fi 1.6 if(ORB) {
1790 pam-fi 1.9 t->SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo"));
1791 pam-fi 1.6 cout << "OrbitalInfo : set branch address OrbitalInfo"<<endl;
1792     };
1793 pam-fi 1.20 // SelectionList
1794     if(SELLI==1) {
1795     t->SetBranchAddress("RunEntry", &irun);
1796     cout << "SelectionList: set branch address RunEntry"<<endl;
1797     t->SetBranchAddress("EventEntry", &irunentry);
1798     cout << "SelectionList: set branch address EventEntry"<<endl;
1799     };
1800 pam-fi 1.6
1801 pam-fi 1.4 }
1802 pam-fi 1.8 /**
1803     * Set branch addresses for Pamela friend trees
1804     */
1805     void PamLevel2::SetBranchAddress(TChain *t){
1806 pam-fi 1.4
1807 pam-fi 1.8 TRK2 = TRK2 & t->GetBranchStatus("TrkLevel2");
1808     TRK1 = TRK1 & t->GetBranchStatus("TrkLevel1");
1809     TRKh = TRKh & t->GetBranchStatus("TrkHough");
1810     CAL1 = CAL1 & t->GetBranchStatus("CaloLevel1");
1811     CAL2 = CAL2 & t->GetBranchStatus("CaloLevel2");
1812     TOF = TOF & t->GetBranchStatus("ToFLevel2");
1813     TRG = TRG & t->GetBranchStatus("TrigLevel2");
1814     S4 = S4 & t->GetBranchStatus("S4Level2");
1815     ND = ND & t->GetBranchStatus("NDLevel2");
1816     AC = AC & t->GetBranchStatus("AcLevel2");
1817     ORB = ORB & t->GetBranchStatus("OrbitalInfo");
1818    
1819     // Tracker
1820 pam-fi 1.9 if(TRK2) {
1821 pam-fi 1.11 t->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2"));
1822 pam-fi 1.9 cout << "Tracker : set branch address TrkLevel2"<<endl;
1823     };
1824 pam-fi 1.8 if(TRK1) {
1825 pam-fi 1.9 t->SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1"));
1826 pam-fi 1.8 cout << "Tracker : set branch address TrkLevel1"<<endl;
1827     };
1828     if(TRKh) {
1829 pam-fi 1.9 t->SetBranchAddress("TrkHough", GetPointerTo("TrkHough"));
1830 pam-fi 1.8 cout << "Tracker : set branch address TrkHough"<<endl;
1831     };
1832    
1833     // Calorimeter
1834 pam-fi 1.9 if(CAL2) {
1835     t->SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2"));
1836     cout << "Calorimeter : set branch address CaloLevel2"<<endl;
1837     };
1838 pam-fi 1.8 if(CAL1) {
1839 pam-fi 1.9 t->SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1"));
1840 pam-fi 1.8 cout << "Calorimeter : set branch address CaloLevel1"<<endl;
1841     };
1842    
1843     // ToF
1844     if(TOF) {
1845 pam-fi 1.9 t->SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2"));
1846 pam-fi 1.8 cout << "ToF : set branch address ToFLevel2"<<endl;
1847     };
1848     // Trigger
1849     if(TRG) {
1850 pam-fi 1.9 t->SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2"));
1851 pam-fi 1.8 cout << "Trigger : set branch address TrigLevel2"<<endl;
1852     };
1853     // S4
1854     if(S4) {
1855 pam-fi 1.9 t->SetBranchAddress("S4Level2", GetPointerTo("S4Level2"));
1856 pam-fi 1.8 cout << "S4 : set branch address S4Level2"<<endl;
1857     };
1858     // Neutron Detector
1859     if(ND) {
1860 pam-fi 1.9 t->SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2"));
1861 pam-fi 1.8 cout << "NeutronD : set branch address NDLevel2"<<endl;
1862     };
1863     // Anticounters
1864     if(AC) {
1865 pam-fi 1.9 t->SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2"));
1866 pam-fi 1.8 cout << "Anticounter : set branch address AcLevel2"<<endl;
1867     };
1868     // OrbitalInfo
1869     if(ORB) {
1870 pam-fi 1.9 t->SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo"));
1871 pam-fi 1.8 cout << "OrbitalInfo : set branch address OrbitalInfo"<<endl;
1872     };
1873 pam-fi 1.20 // SelectionList
1874     if(SELLI==1) {
1875     t->SetBranchAddress("RunEntry", &irun);
1876     cout << "SelectionList: set branch address RunEntry"<<endl;
1877     t->SetBranchAddress("EventEntry", &irunentry);
1878     cout << "SelectionList: set branch address EventEntry"<<endl;
1879     };
1880 pam-fi 1.8
1881     }
1882 pam-fi 1.9
1883    
1884 pam-fi 1.4 //--------------------------------------
1885     //
1886     //
1887     //--------------------------------------
1888     /**
1889     * Get the Run tree chain from a list of files.
1890     * @param fl Pointer to a TList of TSystemFiles
1891     * @return Pointer to a TChain
1892     */
1893     TChain *PamLevel2::GetRunTree(TList *fl){
1894 mocchiut 1.35 //
1895     //
1896     //
1897     if ( run_tree ){
1898     printf("WARNING: TChain *PamLevel2::GetRunTree(TList *fl) -- run_tree already exists!\n ");
1899     return run_tree;
1900     };
1901     //
1902     TChain *R = new TChain("Run");
1903 pam-fi 1.6
1904     // loop over files and create chains
1905     TIter next(fl);
1906     TSystemFile *questo = 0;
1907     while ( (questo = (TSystemFile*) next()) ) {
1908     TString name = questo->GetName();
1909 pam-fi 1.4 // cout << "File: "<< name << endl;
1910 pam-fi 1.6 if( CheckLevel2File(name) ){
1911     R->Add(name);
1912     };
1913     }
1914 pam-fi 1.20
1915     if(R->GetNtrees()){
1916 pam-fi 1.6
1917 pam-fi 1.20 R->SetBranchAddress("RunInfo", GetPointerTo("RunInfo"));
1918     cout << "Run : set branch address RunInfo"<<endl;
1919     R->SetBranchAddress("SoftInfo", GetPointerTo("SoftInfo")); // Emiliano
1920     cout << "Software : set branch address SoftInfo"<<endl; // Emiliano
1921     }else{
1922     delete R;
1923     R=0;
1924     }
1925    
1926     run_tree = R;
1927    
1928 pam-fi 1.6 return R;
1929 pam-fi 1.4
1930     }
1931     //--------------------------------------
1932     //
1933     //
1934     //--------------------------------------
1935     /**
1936     * Get the Run tree from a file.
1937     * @param f Pointer to a TFile
1938     * @return Pointer to a TTree
1939     */
1940     TTree *PamLevel2::GetRunTree(TFile *f){
1941 mocchiut 1.35 if ( run_tree ){
1942     printf("WARNING: TTree *PamLevel2::GetRunTree(TFile *f) -- run_tree already exists!\n ");
1943     return run_tree;
1944     };
1945    
1946 pam-fi 1.4
1947 pam-fi 1.20 cout << "TTree *PamLevel2::GetRunTree(TFile *f) -- obsolte "<<endl;
1948 pam-fi 1.4
1949 mocchiut 1.35 TTree *T = (TTree*)f->Get("Run");
1950 pam-fi 1.6
1951 mocchiut 1.35 if(T){
1952     T->SetBranchAddress("RunInfo", GetPointerTo("RunInfo"));
1953 pam-fi 1.20 cout << "Run : set branch address RunInfo"<<endl;
1954 mocchiut 1.35 T->SetBranchAddress("SoftInfo", GetPointerTo("SoftInfo")); // Emiliano
1955 pam-fi 1.20 cout << "Software : set branch address SoftInfo"<<endl; // Emiliano
1956     }
1957 mocchiut 1.28
1958 mocchiut 1.35 run_tree = (TChain*)T;
1959 mocchiut 1.28
1960 mocchiut 1.35 return T;
1961 pam-fi 1.2
1962     }
1963 mocchiut 1.17 /**
1964     * Update the runinfo informations (to be used to have Run infos event by event basis)
1965     * @param run Pointer to the chain/tree which contains run infos
1966     * @return true if a new run has been read, false if it is still the same run
1967     */
1968 pam-fi 1.33 Bool_t PamLevel2::UpdateRunInfo(TChain *run, Long64_t iev){
1969 mocchiut 1.17 //
1970     // check if we have already called once GetEntry, if not call it
1971     //
1972 pam-fi 1.36 cout << "Bool_t PamLevel2::UpdateRunInfo(TChain *run, Long64_t iev) --- NON FUNZIONA BENISSIMO.... "<<endl;
1973 pam-fi 1.34 if(!run){
1974     cout << "Bool_t PamLevel2::UpdateRunInfo(TChain *run, ULong64_t iev) -- ERROR -- missing RunInfo tree "<<endl;
1975     return(false);
1976     }
1977     if ( run->GetEntries() <= 0 ) return(false);
1978 mocchiut 1.17 //
1979 pam-fi 1.20
1980 mocchiut 1.35 // Int_t oldrun = irun;
1981 pam-fi 1.33 Long64_t oldrun = irun;
1982 mocchiut 1.35
1983 pam-fi 1.20 // --------------------------------------
1984     // if it is a full file (not preselected)
1985     // --------------------------------------
1986     if(SELLI==0){
1987 pam-fi 1.33
1988 pam-fi 1.36 //
1989     // the absolute time is necessary to relate the event with the run
1990     //
1991 pam-fi 1.43 if( !GetOrbitalInfo() && !ISGP){
1992 pam-fi 1.33 cout << "Bool_t PamLevel2::UpdateRunInfo(TChain *run, ULong64_t iev) -- ERROR -- missing OrbitalInfo "<<endl;
1993     return(false);
1994     }
1995    
1996 pam-fi 1.43 ULong64_t abstime = 0;
1997     if( GetOrbitalInfo() )abstime=GetOrbitalInfo()->absTime;
1998    
1999    
2000 pam-fi 1.36 //
2001     // the first time the routine is called, set run search from the beginning
2002     //
2003 mocchiut 1.35 if ( irun < 0LL ){
2004     irun = 0LL;
2005 pam-fi 1.26 run->GetEntry(irun);
2006 pam-fi 1.33 runfirstentry = 0LL;
2007     runlastentry += (Long64_t)(this->GetRunInfo()->NEVENTS);
2008     if ( (Long64_t)(this->GetRunInfo()->NEVENTS) > 0LL ) runlastentry -= 1LL;
2009 pam-fi 1.43
2010     if( ISGP && run->GetEntries()!=1 ){
2011     cout << "** WARNING ** simulated files are assumed to have 1 single run, not "<< run->GetEntries() << endl;
2012     cout << "** WARNING ** run will not be updated"<<endl;
2013     }
2014    
2015 pam-fi 1.24 };
2016 mocchiut 1.35 //
2017 pam-fi 1.43 if(ISGP)abstime = GetRunInfo()->RUNHEADER_TIME; // BARBATRUCCO
2018     //
2019     if ( irun == run->GetEntries()-1LL &&
2020     !(abstime >= GetRunInfo()->RUNHEADER_TIME &&
2021     abstime <= GetRunInfo()->RUNTRAILER_TIME)
2022 mocchiut 1.35 ){
2023     irun = -1LL;
2024     runfirstentry = 0LL;
2025     runlastentry = -1LL;
2026     };
2027 pam-fi 1.24 // modificato il controllo sull'aggiornamento del run, per evitare problemi
2028     // dovuti agli eventi annidati (NB! NEVENTS conta anche questi!!)
2029 mocchiut 1.31 //
2030     bool fromfirst = true;
2031     //
2032 pam-fi 1.43 while ( !(abstime >= GetRunInfo()->RUNHEADER_TIME && abstime <= GetRunInfo()->RUNTRAILER_TIME) && irun < run->GetEntries()-1LL ){
2033 pam-fi 1.24 // while ( iev > (runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS-1)) && irun < run->GetEntries() ){
2034 pam-fi 1.20 irun++;
2035     run->GetEntry(irun);
2036 mocchiut 1.30 runfirstentry = runlastentry;
2037 pam-fi 1.33 if ( (Long64_t)(this->GetRunInfo()->NEVENTS) > 0LL ) runfirstentry += 1LL;
2038     runlastentry += (Long64_t)(this->GetRunInfo()->NEVENTS);
2039     // cout << " ))))) UPDATE RUN INFO ((((( @iev "<<iev<<" run "<<GetRunInfo()->ID<<" irun "<<irun<<endl;
2040     // cout << "runfirstentry "<<runfirstentry<<endl;
2041 mocchiut 1.31 // printf(" iev %llu %u %llu \n",iev,this->GetRunInfo()->NEVENTS,(ULong64_t)(runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS)));
2042 pam-fi 1.43 // printf(" abstime %u trailertime %u \n",abstime,GetRunInfo()->RUNTRAILER_TIME);
2043 mocchiut 1.31 // printf(" IDRUN %u \n",GetRunInfo()->ID);
2044     //
2045 pam-fi 1.33 // prevshift = 0;
2046 mocchiut 1.31 //
2047 pam-fi 1.43 if ( irun == (Long64_t)(run->GetEntries()-1LL) && fromfirst && !(abstime >= GetRunInfo()->RUNHEADER_TIME && abstime <= GetRunInfo()->RUNTRAILER_TIME)){
2048 pam-fi 1.33 printf(" resetting irun (it should NOT happen!!!)\n");
2049 pam-fi 1.32 fromfirst = false;
2050     irun = 0;
2051     run->GetEntry(irun);
2052     runfirstentry = 0ULL;
2053 pam-fi 1.33 runlastentry += (Long64_t)(this->GetRunInfo()->NEVENTS);
2054     if ( (Long64_t)(this->GetRunInfo()->NEVENTS) > 0LL ) runlastentry -= 1LL;
2055 mocchiut 1.31 };
2056     //
2057 pam-fi 1.20 };
2058 mocchiut 1.31 //
2059 mocchiut 1.35 if (
2060 pam-fi 1.43 !(abstime >= GetRunInfo()->RUNHEADER_TIME &&
2061     abstime <= GetRunInfo()->RUNTRAILER_TIME)
2062 pam-fi 1.33 ) {
2063 mocchiut 1.44 printf(" Something very wrong here: cannot find RUN containing absolute time %llu \n",abstime);
2064 pam-fi 1.33 return false;
2065     }
2066 pam-fi 1.20 //
2067 mocchiut 1.30 if ( irun == oldrun || irun >= run->GetEntries() ) return(false);
2068 pam-fi 1.20 //
2069     // printf(" iev %llu irun %i nevents %u 1st %llu last %llu \n",iev,irun,this->GetRunInfo()->NEVENTS,(ULong64_t)runfirstentry,(ULong64_t)runlastentry);
2070     //
2071 pam-fi 1.33 prevshift = 0;
2072     cout << " ))))) UPDATE RUN INFO ((((( @iev "<<iev<<" run "<<GetRunInfo()->ID<<" irun "<<irun<<endl;
2073 pam-fi 1.34 // cout << "runfirstentry "<<runfirstentry<<endl;
2074 pam-fi 1.20 return(true);
2075 mocchiut 1.17 };
2076 pam-fi 1.20 // ----------------------------------------------------
2077     // if it is a preselected file (there is SelectionList)
2078     // NBNB - the event tree MUST be read first
2079     // ----------------------------------------------------
2080     if(SELLI==1){
2081     sel_tree->GetEntry(iev);
2082 pam-fi 1.34 // cout << irun << " "<< irunentry << endl;
2083 pam-fi 1.20 if(irun != oldrun){
2084     run->GetEntry(irun);
2085 pam-fi 1.33 cout << " ))))) UPDATE RUN INFO ((((( @iev "<<iev<<" run "<<GetRunInfo()->ID<<" irun "<<irun<<endl;
2086 pam-fi 1.32 prevshift = 0;
2087 pam-fi 1.20 return true;
2088     }
2089     return false;
2090     }
2091    
2092     return false;
2093 mocchiut 1.17 //
2094     };
2095 pam-fi 1.33
2096 pam-fi 1.36 Bool_t PamLevel2::UpdateRunInfo(Long64_t iev){
2097    
2098     if(!run_tree){
2099     cout << " Bool_t PamLevel2::UpdateRunInfo(ULong64_t iev) -- ERROR -- run tree not loaded"<<endl;
2100     return false;
2101     }
2102     if ( run_tree->GetEntries() <= 0 ) {
2103     cout << " Bool_t PamLevel2::UpdateRunInfo(ULong64_t iev) -- ERROR -- run tree is empty"<<endl;
2104     return(false);
2105     }
2106 pam-fi 1.33
2107 pam-fi 1.36 Int_t oldrun = irun; // store current run index
2108    
2109     // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
2110     // if it is a full file (not preselected)
2111     // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
2112     if(SELLI==0){
2113    
2114 pam-fi 1.45 // ---------------------------------------------------------------
2115     // increment dead and live-time counters
2116     // ---------------------------------------------------------------
2117     if( GetTrigLevel2() ){
2118     totdltime[0]+=GetTrigLevel2()->dltime[0];
2119     totdltime[1]+=GetTrigLevel2()->dltime[1];
2120     }
2121     totdltime[2]++;
2122    
2123     // cout << setw(10)<<totdltime[0]<<setw(10)<<totdltime[1]<<setw(10)<<totdltime[2]<<endl;
2124    
2125     // ---------------------------------------------------------------
2126     // retrieve OBT and absolute time of the event
2127     // ---------------------------------------------------------------
2128 pam-fi 1.43 ULong64_t abstime = 0;
2129     ULong64_t obt = 0;
2130     if( GetOrbitalInfo() ){
2131     abstime = GetOrbitalInfo()->absTime;
2132     obt = GetOrbitalInfo()->OBT;
2133     }
2134 pam-fi 1.36 // ---------------------------------------------------------------
2135     // the absolute time is necessary to relate the event with the run
2136     // ---------------------------------------------------------------
2137 pam-fi 1.43 if( !GetOrbitalInfo() && !ISGP ){
2138 pam-fi 1.36 cout << "Bool_t PamLevel2::UpdateRunInfo(Long64_t iev) -- ERROR -- missing OrbitalInfo "<<endl;
2139     return(false);
2140     }
2141    
2142     // -----------------------------------------------------------------------
2143     // the first time the routine is called, set run search from the beginning
2144     // -----------------------------------------------------------------------
2145     if ( irun < 0 ){
2146     irun = 0LL;
2147 pam-fi 1.39 irunentry = 0;
2148     prevshift = 0;
2149 pam-fi 1.36 run_tree->GetEntry(irun);
2150 pam-fi 1.43
2151     if( ISGP && run_tree->GetEntries()!=1 ){
2152     cout << "** WARNING ** simulated files are assumed to have 1 single run, not "<< run_tree->GetEntries() << endl;
2153     cout << "** WARNING ** run will not be updated"<<endl;
2154     }
2155 pam-fi 1.36 };
2156 pam-fi 1.43
2157     // -----------------------------------------------------------------------
2158 pam-fi 1.45 // if it is simulation, assigh abstime by hand (temporaneo!!!)
2159 pam-fi 1.43 // -----------------------------------------------------------------------
2160     if(ISGP){
2161     abstime = GetRunInfo()->RUNHEADER_TIME; // BARBATRUCCO
2162     obt = GetRunInfo()->RUNHEADER_OBT; // BARBATRUCCO
2163     }
2164 pam-fi 1.36 //
2165     bool fromfirst = true; // first loop over runs
2166 pam-fi 1.39
2167     // Bool_t hasfrag = false;
2168     // if( GetRunInfo()->ID_RUN_FRAG!=0 && GetRunInfo()->ID_RUN_FRAG != GetRunInfo()->ID)hasfrag=true;
2169     // ULong64_t fragid = GetRunInfo()->ID_RUN_FRAG;
2170    
2171 pam-fi 1.36 // ------------------------------------------------------
2172     // loop over runs to find the one that contains the event
2173     // ------------------------------------------------------
2174 pam-fi 1.39 while (
2175     (
2176     (
2177 pam-fi 1.43 !(abstime >= GetRunInfo()->RUNHEADER_TIME && // check on absolute time (s)
2178     abstime <= GetRunInfo()->RUNTRAILER_TIME) &&
2179     !(obt >= GetRunInfo()->RUNHEADER_OBT && // additional check on OBT (ms)
2180     obt <= GetRunInfo()->RUNTRAILER_OBT)
2181 pam-fi 1.39 )
2182     || GetRunInfo()->NEVENTS==0
2183     || !(irunentry < GetRunInfo()->NEVENTS-1-prevshift)
2184     )
2185     && irun < run_tree->GetEntries() ){
2186    
2187 pam-fi 1.45
2188    
2189    
2190     // -----------------------------------------
2191     // store dead and live-time of previous run
2192     // -----------------------------------------
2193     if(fromfirst){
2194     if(oldrun==irun){
2195     /// decrement counters
2196     if( GetTrigLevel2()){
2197     totdltime[0]-=GetTrigLevel2()->dltime[0];//live-time
2198     totdltime[1]-=GetTrigLevel2()->dltime[1];//dead-time
2199     }
2200     totdltime[2]--; //event counter
2201     cout << endl;
2202     cout << "n.events : "<<totdltime[2]<<endl;
2203     cout << "RUN LIVE-TIME: "<<totdltime[0]*0.16<<" ms"<<endl;
2204     cout << "RUN DEAD-TIME: "<<totdltime[1]*0.01<<" ms"<<endl;
2205     }else{
2206     totdltime[0]=0;//live-time
2207     totdltime[1]=0;//dead-time
2208     totdltime[2]=0; //event counter
2209     cout << " *** JUMP RUN *** irun "<<irun<<endl;
2210     }
2211     /// add an entry
2212     if(run_tree_clone)
2213     if(run_tree_clone->GetBranch("DeadLiveTime")->GetEntries() < run_tree->GetEntries())
2214     run_tree_clone->GetBranch("DeadLiveTime")->Fill();
2215     /// reset counters
2216     if( GetTrigLevel2() ){
2217     totdltime[0]=GetTrigLevel2()->dltime[0];//live-time
2218     totdltime[1]=0; //dead-time
2219     }
2220     totdltime[2]=1; //event counter
2221     }
2222    
2223    
2224 pam-fi 1.36 irun++;
2225     // ------------------------------------
2226     // if the end of run tree is reached...
2227     // ------------------------------------
2228     if( irun == run_tree->GetEntries() ){
2229     if(!fromfirst){
2230     // -----------------------------------------------------
2231     // if it happened already once and the run was not found
2232     // ---> exit with error
2233     // -----------------------------------------------------
2234     cout << "Bool_t PamLevel2::UpdateRunInfo(Long64_t iev) -- ERROR -- event entry #"<<iev<<" does not belong to any run (should not happen)" <<endl;
2235     return false;
2236     }
2237     // -----------------------------------------
2238     // ...otherwise repeat search from beginning
2239     // -----------------------------------------
2240     cout << "Bool_t PamLevel2::UpdateRunInfo(Long64_t iev) -- WARNING -- reached end of run tree. searchin again from beginning " <<endl;
2241     fromfirst = false;
2242     irun = 0LL;
2243     runfirstentry = 0LL;
2244     }
2245     // -------------------------------------------------------------------
2246     // save the index of the first entry of the run, relative to pam_tree,
2247     // and read a new run
2248     // -------------------------------------------------------------------
2249 pam-fi 1.39 if(irun>0)runfirstentry += (GetRunInfo()->NEVENTS)-prevshift;
2250     irunentry = 0;
2251 pam-fi 1.45 prevshift = 0;
2252 pam-fi 1.36 run_tree->GetEntry(irun);
2253 pam-fi 1.39 if(GetRunInfo()->RUNHEADER_OBT>GetRunInfo()->RUNTRAILER_OBT ){
2254 pam-fi 1.36 cout << "Bool_t PamLevel2::UpdateRunInfo(Long64_t iev) -- WARNING -- irun "<<irun<<" has RUNHEADER_OBT>=RUNTRAILER_OBT " <<endl;
2255     cout << " (NB!! in this case some events are assigned to a wrong run)"<<endl;
2256     }
2257 pam-fi 1.39 // if(hasfrag && fragid != GetRunInfo()->ID){
2258     // cout << "... where is the next fragment ??"<<endl;
2259     // }
2260 pam-fi 1.36 };
2261 pam-fi 1.39
2262    
2263 pam-fi 1.36 // --------------------------------------
2264     // if there was no need to update the run
2265     // ---> exit with FALSE
2266     // --------------------------------------
2267     if ( irun == oldrun ) return(false);
2268    
2269     // --------------------------------------
2270     // ... otherwise
2271 pam-fi 1.45 // --------------------------------------
2272    
2273    
2274    
2275     // // -----------------------------------------
2276     // // store dead and live-time of previous run
2277     // // -----------------------------------------
2278     // // --------------------------------------------------------------
2279     // // if the run is empty, fill the dead-live time branch with zeros
2280     // // --------------------------------------------------------------
2281     // /// if some runs have been jumped, fill with zeros
2282     // if(irun-oldrun>1){
2283     // ULong64_t temp[3];
2284     // temp[0]=totdltime[0];
2285     // temp[1]=totdltime[1];
2286     // temp[2]=totdltime[2];
2287     // for(int i=oldrun+1; i<irun; irun++){
2288     // totdltime[0]=0;
2289     // totdltime[1]=0;
2290     // totdltime[2]=0;
2291     // cout << " ** JUMPED RUN **"<<endl;
2292     // if(run_tree_clone)
2293     // if(run_tree_clone->GetBranch("DeadLiveTime")->GetEntries() < run_tree->GetEntries())
2294     // run_tree_clone->GetBranch("DeadLiveTime")->Fill();
2295     // }
2296     // totdltime[0]=temp[0];
2297     // totdltime[1]=temp[1];
2298     // totdltime[2]=temp[2];
2299     // }
2300     // /// decrement counters
2301     // if( GetTrigLevel2() ){
2302     // totdltime[0]-=GetTrigLevel2()->dltime[0];//live-time
2303     // totdltime[1]-=GetTrigLevel2()->dltime[1];//dead-time
2304     // }
2305     // totdltime[2]--; //event counter
2306     // /// add an entry
2307     // if(irun>0 ){
2308     // cout << endl;
2309     // cout << "n.events : "<<totdltime[2]<<endl;
2310     // cout << "RUN LIVE-TIME: "<<totdltime[0]*0.16<<" ms"<<endl;
2311     // cout << "RUN DEAD-TIME: "<<totdltime[1]*0.01<<" ms"<<endl;
2312     // if(run_tree_clone)
2313     // if(run_tree_clone->GetBranch("DeadLiveTime")->GetEntries() < run_tree->GetEntries())
2314     // run_tree_clone->GetBranch("DeadLiveTime")->Fill();
2315     // }
2316     // /// reset counters
2317     // if( GetTrigLevel2() ){
2318     // totdltime[0]=GetTrigLevel2()->dltime[0];//live-time
2319     // totdltime[1]=0; //dead-time
2320     // }
2321     // totdltime[2]=1; //event counter
2322    
2323    
2324     // --------------------------------------
2325 pam-fi 1.36 // ---> exit with TRUE
2326     // --------------------------------------
2327     cout << endl << " ))))) UPDATE RUN INFO ((((( @iev "<<iev<<" run "<<GetRunInfo()->ID<<" irun "<<irun<<endl;
2328 pam-fi 1.39 // ----------------------------------------------------
2329     // then check if the run has a fragment
2330     // in this case we have to switch to the next fragment
2331     // when the end of the first fragment is reached
2332     // ----------------------------------------------------
2333     if(
2334     GetRunInfo()->ID_RUN_FRAG != 0 &&
2335     // GetRunInfo()->ID_RUN_FRAG != GetRunInfo()->ID &&
2336     true ){
2337     cout << "* fragment *"<<endl;
2338     }
2339 pam-fi 1.45
2340 pam-fi 1.36 return(true);
2341     };
2342     // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
2343     // if it is a preselected file (there is SelectionList)
2344     // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
2345     if(SELLI==1){
2346     sel_tree->GetEntry(iev);
2347     if(irun != oldrun){
2348     run_tree->GetEntry(irun);
2349     cout << endl << " ))))) UPDATE RUN INFO ((((( @iev "<<iev<<" run "<<GetRunInfo()->ID<<" irun "<<irun<<endl;
2350     prevshift = 0;
2351     return true;
2352     }
2353     return false;
2354     }
2355    
2356     return false;
2357     //
2358     };
2359 mocchiut 1.17 /**
2360     * Update the runinfo informations (to be used to have Run infos event by event basis)
2361     * @param run Pointer to the chain/tree which contains run infos
2362     * @return true if a new run has been read, false if it is still the same run
2363     */
2364 pam-fi 1.33 Bool_t PamLevel2::UpdateRunInfo(TTree *run, Long64_t iev){
2365 mocchiut 1.17 return(UpdateRunInfo((TChain*)run,iev));
2366     };
2367    
2368 pam-fi 1.2 //--------------------------------------
2369     //
2370     //
2371     //--------------------------------------
2372     /**
2373 pam-fi 1.8 * Set which trees shoul be analysed
2374 pam-fi 1.2 * @param detlist TString containing the sequence of trees required
2375     */
2376     void PamLevel2::SetWhichTrees(TString detlist){
2377    
2378 pam-fi 1.12 if(detlist.IsNull() || detlist.Contains("+ALL", TString::kIgnoreCase)){
2379 pam-fi 1.20 CAL0 = false;
2380 pam-fi 1.8 CAL1 = true;
2381     CAL2 = true;
2382     TRK2 = true;
2383     TRK1 = false;
2384     TRKh = false;
2385 pam-fi 1.20 TRK0 = false;
2386 pam-fi 1.6 TRG = true;
2387     TOF = true;
2388 pam-fi 1.20 TOF0 = false;
2389 pam-fi 1.6 S4 = true;
2390     ND = true;
2391     AC = true;
2392     ORB = true;
2393     }else if( detlist.Contains("-ALL", TString::kIgnoreCase) ){
2394 pam-fi 1.20 CAL0 = false;
2395 pam-fi 1.8 CAL1 = false;
2396     CAL2 = false;
2397     TRK2 = false;
2398     TRK1 = false;
2399     TRKh = false;
2400 pam-fi 1.20 TRK0 = false;
2401 pam-fi 1.6 TRG = false;
2402     TOF = false;
2403 pam-fi 1.20 TOF0 = false;
2404 pam-fi 1.6 S4 = false;
2405     ND = false;
2406     AC = false;
2407     ORB = false;
2408     };
2409    
2410 pam-fi 1.8 // -------------------------------------------------------------------------
2411     if( detlist.Contains("CAL1", TString::kIgnoreCase) ){
2412     if ( detlist.Contains("-CAL1", TString::kIgnoreCase) )CAL1=false;
2413     if ( detlist.Contains("+CAL1", TString::kIgnoreCase) )CAL1=true;
2414     };
2415 pam-fi 1.20
2416     if( detlist.Contains("CAL0", TString::kIgnoreCase) ){
2417     if ( detlist.Contains("-CAL0", TString::kIgnoreCase) )CAL0=false;
2418     if ( detlist.Contains("+CAL0", TString::kIgnoreCase) )CAL0=true;
2419     };
2420 pam-fi 1.8
2421     if( detlist.Contains("CAL2", TString::kIgnoreCase)){
2422     if ( detlist.Contains("-CAL2", TString::kIgnoreCase) )CAL2=false;
2423     if ( detlist.Contains("+CAL2", TString::kIgnoreCase) )CAL2=true;
2424     };
2425    
2426     if( detlist.Contains("+CAL", TString::kIgnoreCase) && !CAL1 && !CAL2 )CAL2=true;
2427     if( detlist.Contains("-CAL", TString::kIgnoreCase) && CAL1 && CAL2 ){
2428     CAL2=false;
2429     CAL1=false;
2430     }
2431     // -------------------------------------------------------------------------
2432 pam-fi 1.20 if( detlist.Contains("TRK0", TString::kIgnoreCase) ){
2433     if ( detlist.Contains("-TRK0", TString::kIgnoreCase) )TRK0=false;
2434     if ( detlist.Contains("+TRK0", TString::kIgnoreCase) )TRK0=true;
2435     };
2436    
2437 pam-fi 1.8 if( detlist.Contains("TRK1", TString::kIgnoreCase) ){
2438     if ( detlist.Contains("-TRK1", TString::kIgnoreCase) )TRK1=false;
2439     if ( detlist.Contains("+TRK1", TString::kIgnoreCase) )TRK1=true;
2440     };
2441    
2442     if( detlist.Contains("TRK2", TString::kIgnoreCase)){
2443     if ( detlist.Contains("-TRK2", TString::kIgnoreCase) )TRK2=false;
2444     if ( detlist.Contains("+TRK2", TString::kIgnoreCase) )TRK2=true;
2445     };
2446    
2447     if( detlist.Contains("TRKh", TString::kIgnoreCase)){
2448     if ( detlist.Contains("-TRKh", TString::kIgnoreCase) )TRKh=false;
2449     if ( detlist.Contains("+TRKh", TString::kIgnoreCase) )TRKh=true;
2450     };
2451    
2452     if( detlist.Contains("+TRK", TString::kIgnoreCase) && !TRK1 && !TRK2 && !TRKh )TRK2=true;
2453     if( detlist.Contains("-TRK", TString::kIgnoreCase) && TRK1 && TRK2 && TRKh){
2454     TRK2=false;
2455     TRK1=false;
2456     TRKh=false;
2457     }
2458     // -------------------------------------------------------------------------
2459 pam-fi 1.6
2460     if( detlist.Contains("-TRG", TString::kIgnoreCase) )TRG = false;
2461     else if( detlist.Contains("+TRG", TString::kIgnoreCase) )TRG = true;
2462    
2463     if( detlist.Contains("-TOF", TString::kIgnoreCase) )TOF = false;
2464     else if( detlist.Contains("+TOF", TString::kIgnoreCase) )TOF = true;
2465 pam-fi 1.20
2466     if( detlist.Contains("-TOF0", TString::kIgnoreCase) )TOF0 = false;
2467     else if( detlist.Contains("+TOF0", TString::kIgnoreCase) )TOF0 = true;
2468 pam-fi 1.6
2469     if( detlist.Contains("-S4", TString::kIgnoreCase) )S4 = false;
2470     else if( detlist.Contains("+S4", TString::kIgnoreCase) )S4 = true;
2471    
2472     if( detlist.Contains("-ND", TString::kIgnoreCase) )ND = false;
2473     else if( detlist.Contains("+ND", TString::kIgnoreCase) )ND = true;
2474    
2475     if( detlist.Contains("-AC", TString::kIgnoreCase) )AC = false;
2476     else if( detlist.Contains("+AC", TString::kIgnoreCase) )AC = true;
2477    
2478     if( detlist.Contains("-ORB", TString::kIgnoreCase) )ORB = false;
2479     else if( detlist.Contains("+ORB", TString::kIgnoreCase) )ORB = true;
2480 pam-fi 1.11
2481 pam-fi 1.12 // cout<< "Set detector list --> ";
2482     // if(TRK1)cout<<"TRK1 ";
2483     // if(TRK2)cout<<"TRK2 ";
2484     // if(TRKh)cout<<"TRKH ";
2485     // if(CAL1)cout<<"CAL1 ";
2486     // if(CAL2)cout<<"CAL2 ";
2487     // if(TOF)cout<<"TOF ";
2488     // if(TRG)cout<<"TRG ";
2489     // if(AC)cout<<"AC ";
2490     // if(ND)cout<<"ND ";
2491     // if(S4)cout<<"S4 ";
2492     // if(ORB)cout<<"ORB ";
2493     // cout << endl;
2494 pam-fi 1.6
2495 pam-fi 1.2 };
2496 pam-fi 1.11
2497    
2498     /**
2499     * Set tree/branch detector flags from the content of a tree
2500     */
2501     void PamLevel2::GetWhichTrees(TFile* f){
2502 pam-fi 1.20
2503    
2504    
2505     cout << "void PamLevel2::GetWhichTrees(TFile* f) --- WARNING!! --- ...potrebbe non funzionare "<<endl;
2506 pam-fi 1.11 // -----------
2507     // reset flags
2508     // -----------
2509 pam-fi 1.12 CAL1 = false;
2510     CAL2 = false;
2511     TRK2 = false;
2512     TRK1 = false;
2513     TRKh = false;
2514     TRG = false;
2515     TOF = false;
2516     S4 = false;
2517     ND = false;
2518     AC = false;
2519     ORB = false;
2520 pam-fi 1.11
2521 pam-fi 1.12 RUN = false;
2522 pam-fi 1.11
2523     cout << "Checking file: "<<f->GetName()<<endl;
2524     if( !f || f->IsZombie() ){
2525     cout << "File: "<< f->GetName() <<" Non valid root file"<< endl;
2526     return;
2527     }
2528    
2529     TList *lk = f->GetListOfKeys();
2530     TIter next(lk);
2531     TKey *key =0;
2532    
2533     Int_t nev = 0;
2534    
2535     while( (key = (TKey*)next()) ){
2536    
2537     if( !strcmp(key->GetName(),"Run" ) )RUN = true;
2538    
2539     //=========================================================
2540     if( !strcmp(key->GetName(),"Trigger" ) ){
2541     TRG = true;
2542     Int_t nevt = ((TTree*)f->Get("Trigger"))->GetEntries();
2543     if( nev && nevt!=nev){
2544     cout << "File: "<< f->GetName() <<" Trigger tree has "<<nevt<<" events instead of "<<nev<< endl;
2545     TRG = false;
2546     }else nev=nevt;
2547     }
2548     //=========================================================
2549     if( !strcmp(key->GetName(),"ToF" ) ){
2550     TOF = true;
2551     Int_t nevt = ((TTree*)f->Get("ToF"))->GetEntries();
2552     if( nev && nevt!=nev){
2553     cout << "File: "<< f->GetName() <<" ToF tree has "<<nevt<<" events instead of "<<nev<< endl;
2554     TOF = false;
2555     }else nev=nevt;
2556     }
2557     //=========================================================
2558     if( !strcmp(key->GetName(),"S4" ) ){
2559     S4 = true;
2560     Int_t nevt = ((TTree*)f->Get("S4"))->GetEntries();
2561     if( nev && nevt!=nev){
2562     cout << "File: "<< f->GetName() <<" S4 tree has "<<nevt<<" events instead of "<<nev<< endl;
2563     S4 = false;
2564     }else nev=nevt;
2565     }
2566     //=========================================================
2567    
2568     if( !strcmp(key->GetName(),"NeutronD" ) ){
2569     ND = true;
2570     Int_t nevt = ((TTree*)f->Get("NeutronD"))->GetEntries();
2571     if( nev && nevt!=nev){
2572     cout << "File: "<< f->GetName() <<"NeutronD tree has "<<nevt<<" events instead of "<<nev<< endl;
2573     ND =false;
2574     }else nev=nevt;
2575     }
2576     //=========================================================
2577     if( !strcmp(key->GetName(),"Anticounter") ){
2578     AC = true;
2579     Int_t nevt = ((TTree*)f->Get("Anticounter"))->GetEntries();
2580     if( nev && nevt!=nev){
2581     cout << "File: "<< f->GetName() <<" Anticounter tree has "<<nevt<<" events instead of "<<nev<< endl;
2582     AC =false;
2583     }else nev=nevt;
2584     }
2585     //=========================================================
2586     if( !strcmp(key->GetName(),"OrbitalInfo") ){
2587     ORB = true;
2588     Int_t nevt = ((TTree*)f->Get("OrbitalInfo"))->GetEntries();
2589     if( nev && nevt!=nev){
2590     cout << "File: "<< f->GetName() <<" OrbitalInfo tree has "<<nevt<<" events instead of "<<nev<< endl;
2591     ORB = false;
2592     }else nev=nevt;
2593     }
2594     //=========================================================
2595     if( !strcmp(key->GetName(),"Tracker" ) ){
2596     TTree *T = (TTree*)f->Get("Tracker");
2597     for(Int_t i=0; i<T->GetListOfBranches()->GetEntries(); i++){
2598     TString name = T->GetListOfBranches()->At(i)->GetName();
2599     if( !name.CompareTo("TrkLevel1") )TRK1=true;
2600     if( !name.CompareTo("TrkLevel2") )TRK2=true;
2601     if( !name.CompareTo("TrkHough") )TRKh=true;
2602     };
2603     Int_t nevt = T->GetEntries();
2604     if( nev && nevt!=nev){
2605     cout << "File: "<< f->GetName() <<" Tracker tree has "<<nevt<<" events instead of "<<nev<< endl;
2606     TRK1 = false;
2607     TRK2 = false;
2608     TRKh = false;
2609     }else nev=nevt;
2610     T->Delete();
2611     };
2612     //=========================================================
2613     if( !strcmp(key->GetName(),"Calorimeter" ) ){
2614     TTree *T = (TTree*)f->Get("Calorimeter");
2615     for(Int_t i=0; i<T->GetListOfBranches()->GetEntries(); i++){
2616     TString name = T->GetListOfBranches()->At(i)->GetName();
2617     if( !name.CompareTo("CaloLevel1") )CAL1=true;
2618     if( !name.CompareTo("CaloLevel2") )CAL2=true;
2619     };
2620     Int_t nevt = T->GetEntries();
2621     if( nev && nevt!=nev){
2622     cout << "File: "<< f->GetName() <<" Calorimeter tree has "<<nevt<<" events instead of "<<nev<< endl;
2623     CAL1 = false;
2624     CAL2 = false;
2625     }else nev=nevt;
2626     T->Delete();
2627     };
2628    
2629     };
2630    
2631 pam-fi 1.13 delete lk;
2632 pam-fi 1.12
2633     // cout<< "Get detector list from input file --> ";
2634     // if(TRK1)cout<<"TRK1 ";
2635     // if(TRK2)cout<<"TRK2 ";
2636     // if(TRKh)cout<<"TRKH ";
2637     // if(CAL1)cout<<"CAL1 ";
2638     // if(CAL2)cout<<"CAL2 ";
2639     // if(TOF)cout<<"TOF ";
2640     // if(TRG)cout<<"TRG ";
2641     // if(AC)cout<<"AC ";
2642     // if(ND)cout<<"ND ";
2643     // if(S4)cout<<"S4 ";
2644     // if(ORB)cout<<"ORB ";
2645     // cout << endl;
2646 pam-fi 1.11
2647     return ;
2648    
2649     };
2650    
2651    
2652 pam-fi 1.2 //--------------------------------------
2653     //
2654     //
2655     //--------------------------------------
2656     /**
2657 pam-fi 1.3 * Check if a file contains selected Pamela Level2 trees.
2658 pam-fi 1.2 * @param name File name
2659 pam-fi 1.4 * @return true if the file is ok.
2660 pam-fi 1.2 */
2661     Bool_t PamLevel2::CheckLevel2File(TString name){
2662    
2663 pam-fi 1.8 Bool_t CAL1__ok = false;
2664     Bool_t CAL2__ok = false;
2665     Bool_t TRK2__ok = false;
2666     Bool_t TRK1__ok = false;
2667     Bool_t TRKh__ok = false;
2668 pam-fi 1.7 Bool_t TRG__ok = false;
2669     Bool_t TOF__ok = false;
2670     Bool_t S4__ok = false;
2671     Bool_t ND__ok = false;
2672     Bool_t AC__ok = false;
2673     Bool_t ORB__ok = false;
2674 pam-fi 1.6
2675 pam-fi 1.7 Bool_t RUN__ok = false;
2676 pam-fi 1.6
2677 pam-fi 1.20 Bool_t SELLI__ok = false;
2678 pam-fi 1.8
2679     cout << "Checking file: "<<name<<endl;
2680 pam-fi 1.6 TFile *f = new TFile(name.Data());
2681     if( !f || f->IsZombie() ){
2682     cout << "File: "<< f->GetName() <<" discarded ---- Non valid root file"<< endl; return false;
2683     }
2684 pam-fi 1.7 // cout << "Get list of keys: "<<f<<endl;
2685 pam-fi 1.6 TList *lk = f->GetListOfKeys();
2686 pam-fi 1.8 // lk->Print();
2687 pam-fi 1.6 TIter next(lk);
2688     TKey *key =0;
2689 pam-fi 1.8
2690     Int_t nev = 0;
2691    
2692 pam-fi 1.6 while( (key = (TKey*)next()) ){
2693    
2694 pam-fi 1.20 // cout << key->GetName() << endl;
2695 pam-fi 1.12 // cout << key->GetName() << ""<<key->GetClassName()<<endl;
2696     // cout << " Get tree: " << f->Get(key->GetName())<<endl;
2697 pam-fi 1.7 // nev_previous = nev;
2698     // cout << " n.entries "<< nev <<endl;
2699     // if( key->GetClassName()=="TTree" && nev_previous && nev != nev_previous ){
2700     // nev = ((TTree*)f->Get(key->GetName()))->GetEntries();
2701     // cout << "File: "<< f->GetName() <<" discarded ---- "<< key->GetName() << " tree: n.entries does not match "<<nev<<" "<<nev_previous<< endl;
2702     // return false;
2703     // };
2704 pam-fi 1.6
2705 pam-fi 1.20
2706 pam-fi 1.6 if( !strcmp(key->GetName(),"Run" ) )RUN__ok = true;
2707 pam-fi 1.8
2708     //=========================================================
2709 pam-fi 1.20 if( !strcmp(key->GetName(),"SelectionList" ) ){
2710     SELLI__ok = true;
2711     if(SELLI==1){
2712     Int_t nevt = ((TTree*)f->Get("SelectionList"))->GetEntries();
2713     if( nev && nevt!=nev){
2714     cout << "File: "<< f->GetName() <<" discarded ---- SelectionList tree has "<<nevt<<" events instead of "<<nev<< endl;
2715     return false;
2716     }
2717     nev=nevt;
2718     }
2719     }
2720    
2721     //=========================================================
2722 pam-fi 1.8 if( !strcmp(key->GetName(),"Trigger" ) ){
2723     TRG__ok = true;
2724     if(TRG){
2725     Int_t nevt = ((TTree*)f->Get("Trigger"))->GetEntries();
2726     if( nev && nevt!=nev){
2727     cout << "File: "<< f->GetName() <<" discarded ---- Trigger tree has "<<nevt<<" events instead of "<<nev<< endl;
2728     return false;
2729     }
2730     nev=nevt;
2731     }
2732     }
2733     //=========================================================
2734     if( !strcmp(key->GetName(),"ToF" ) ){
2735     TOF__ok = true;
2736     if(TOF){
2737     Int_t nevt = ((TTree*)f->Get("ToF"))->GetEntries();
2738     if( nev && nevt!=nev){
2739     cout << "File: "<< f->GetName() <<" discarded ---- ToF tree has "<<nevt<<" events instead of "<<nev<< endl;
2740     return false;
2741     }
2742     nev=nevt;
2743     }
2744     }
2745     //=========================================================
2746     if( !strcmp(key->GetName(),"S4" ) ){
2747     S4__ok = true;
2748     if(S4){
2749     Int_t nevt = ((TTree*)f->Get("S4"))->GetEntries();
2750     if( nev && nevt!=nev){
2751     cout << "File: "<< f->GetName() <<" discarded ---- S4 tree has "<<nevt<<" events instead of "<<nev<< endl;
2752     return false;
2753     }
2754     nev=nevt;
2755     }
2756     }
2757     //=========================================================
2758    
2759     if( !strcmp(key->GetName(),"NeutronD" ) ){
2760     ND__ok = true;
2761     if(ND){
2762     Int_t nevt = ((TTree*)f->Get("NeutronD"))->GetEntries();
2763     if( nev && nevt!=nev){
2764     cout << "File: "<< f->GetName() <<" discarded ---- NeutronD tree has "<<nevt<<" events instead of "<<nev<< endl;
2765     return false;
2766     }
2767     nev=nevt;
2768     }
2769     }
2770     //=========================================================
2771     if( !strcmp(key->GetName(),"Anticounter") ){
2772     AC__ok = true;
2773     if(AC){
2774     Int_t nevt = ((TTree*)f->Get("Anticounter"))->GetEntries();
2775     if( nev && nevt!=nev){
2776     cout << "File: "<< f->GetName() <<" discarded ---- Anticounter tree has "<<nevt<<" events instead of "<<nev<< endl;
2777     return false;
2778     }
2779     nev=nevt;
2780     }
2781     }
2782     //=========================================================
2783     if( !strcmp(key->GetName(),"OrbitalInfo") ){
2784     ORB__ok = true;
2785     if(ORB){
2786     Int_t nevt = ((TTree*)f->Get("OrbitalInfo"))->GetEntries();
2787     if( nev && nevt!=nev){
2788     cout << "File: "<< f->GetName() <<" discarded ---- OrbitalInfo tree has "<<nevt<<" events instead of "<<nev<< endl;
2789     return false;
2790     }
2791     nev=nevt;
2792     }
2793     }
2794     //=========================================================
2795 pam-fi 1.6 if( !strcmp(key->GetName(),"Tracker" ) ){
2796     TTree *T = (TTree*)f->Get("Tracker");
2797 pam-fi 1.8 if(TRK1||TRK2||TRKh){
2798     Int_t nevt = T->GetEntries();
2799     if( nev && nevt!=nev){
2800     cout << "File: "<< f->GetName() <<" discarded ---- Tracker tree has "<<nevt<<" events instead of "<<nev<< endl;
2801     return false;
2802     }
2803     nev=nevt;
2804     }
2805 pam-fi 1.6 for(Int_t i=0; i<T->GetListOfBranches()->GetEntries(); i++){
2806     TString name = T->GetListOfBranches()->At(i)->GetName();
2807 pam-fi 1.8 if( !name.CompareTo("TrkLevel1") )TRK1__ok=true;
2808     if( !name.CompareTo("TrkLevel2") )TRK2__ok=true;
2809     if( !name.CompareTo("TrkHough") )TRKh__ok=true;
2810     };
2811     T->Delete();
2812 pam-fi 1.2 };
2813 pam-fi 1.8 //=========================================================
2814     if( !strcmp(key->GetName(),"Calorimeter" ) ){
2815     TTree *T = (TTree*)f->Get("Calorimeter");
2816     if(CAL1||CAL2){
2817     Int_t nevt = T->GetEntries();
2818     if( nev && nevt!=nev){
2819     cout << "File: "<< f->GetName() <<" discarded ---- Calorimeter tree has "<<nevt<<" events instead of "<<nev<< endl;
2820     return false;
2821     }
2822     nev=nevt;
2823     }
2824     for(Int_t i=0; i<T->GetListOfBranches()->GetEntries(); i++){
2825     TString name = T->GetListOfBranches()->At(i)->GetName();
2826     if( !name.CompareTo("CaloLevel1") )CAL1__ok=true;
2827     if( !name.CompareTo("CaloLevel2") )CAL2__ok=true;
2828     };
2829     T->Delete();
2830     };
2831    
2832 pam-fi 1.6 };
2833 pam-fi 1.20
2834     if( SELLI==-1 )SELLI = (Int_t)SELLI__ok;
2835     if( SELLI==0 && SELLI__ok ){
2836     cout << "File: "<< f->GetName() <<" discarded ---- found SelectionList (it is not a full-event file)" << endl;
2837     return false;
2838     }
2839     if( SELLI==1 && !SELLI__ok ){
2840     cout << "File: "<< f->GetName() <<" discarded ---- SelectionList missing" << endl;
2841     return false;
2842     }
2843 pam-fi 1.6
2844 pam-fi 1.20 // cout << "SELLI "<<SELLI<<endl;
2845    
2846 pam-fi 1.12 // cout<< "CheckLevel2File(TString): detector list --> ";
2847     // if(TRK1__ok)cout<<"TRK1 ";
2848     // if(TRK2__ok)cout<<"TRK2 ";
2849     // if(TRKh__ok)cout<<"TRKH ";
2850     // if(CAL1__ok)cout<<"CAL1 ";
2851     // if(CAL2__ok)cout<<"CAL2 ";
2852     // if(TOF__ok)cout<<"TOF ";
2853     // if(TRG__ok)cout<<"TRG ";
2854     // if(AC__ok)cout<<"AC ";
2855     // if(ND__ok)cout<<"ND ";
2856     // if(S4__ok)cout<<"S4 ";
2857     // if(ORB__ok)cout<<"ORB ";
2858     // cout << endl;
2859 pam-fi 1.8
2860    
2861 pam-fi 1.13 if(TRK2 && TRK1__ok)TRK1=1;
2862     // ----------------------------------------------------------------------------
2863     // NOTA
2864     // se c'e` il level1, lo devo necessarimente leggere.
2865     // infatti (non ho capito perche`) i cluster vengono letti e allocati in memoria
2866     // comunque, ma non vengono disallocati da PamLevel2::Clear()
2867     // ----------------------------------------------------------------------------
2868    
2869    
2870 pam-fi 1.6 if(!RUN__ok) {
2871 pam-fi 1.9 cout << "File: "<< f->GetName() <<" *WARNING* ---- Missing RunInfo tree"<< endl;
2872     // return false;
2873 pam-fi 1.8 };
2874    
2875     if(CAL1 && !CAL1__ok){
2876     cout << "File: "<< f->GetName() <<" discarded ---- Missing CaloLevel1 branch"<< endl;
2877     return false;
2878     };
2879     if(CAL2 && !CAL2__ok){
2880     cout << "File: "<< f->GetName() <<" discarded ---- Missing CaloLevel2 branch"<< endl;
2881     return false;
2882     };
2883     if(TRK2 && !TRK2__ok){
2884     cout << "File: "<< f->GetName() <<" discarded ---- Missing TrkLevel2 branch"<< endl;
2885     return false;
2886     };
2887     if(TRK1 && !TRK1__ok){
2888     cout << "File: "<< f->GetName() <<" discarded ---- Missing TrkLevel1 branch"<< endl;
2889     return false;
2890     };
2891     if(TRKh && !TRKh__ok){
2892     cout << "File: "<< f->GetName() <<" discarded ---- Missing TrkHough branch"<< endl;
2893     return false;
2894 pam-fi 1.6 };
2895 pam-fi 1.8 if(ORB && !ORB__ok){
2896     cout << "File: "<< f->GetName() <<" discarded ---- Missing ORB tree"<< endl;
2897     return false;
2898 pam-fi 1.6 };
2899 pam-fi 1.8 if(AC && !AC__ok){
2900     cout << "File: "<< f->GetName() <<" discarded ---- Missing AC tree"<< endl;
2901     return false;
2902 pam-fi 1.6 };
2903     if(S4 && !S4__ok){
2904 pam-fi 1.8 cout << "File: "<< f->GetName() <<" discarded ---- Missing S4 tree"<< endl;
2905     return false;
2906 pam-fi 1.6 };
2907 pam-fi 1.8 if(TOF && !TOF__ok){
2908     cout << "File: "<< f->GetName() <<" discarded ---- Missing ToF tree"<< endl;
2909     return false;
2910 pam-fi 1.6 };
2911 pam-fi 1.8
2912 pam-fi 1.12 if(ND && !ND__ok){
2913     cout << "File: "<< f->GetName() <<" discarded ---- Missing ND tree"<< endl;
2914     return false;
2915     };
2916     if(TRG && !TRG__ok){
2917     cout << "File: "<< f->GetName() <<" discarded ---- Missing Trigger tree"<< endl;
2918     return false;
2919     };
2920    
2921 pam-fi 1.8
2922 pam-fi 1.13 // lk->Delete();
2923     // delete lk;
2924 pam-fi 1.8 f->Close();
2925 pam-fi 1.12
2926     // cout<< "CheckLevel2File(TString): detector list --> ";
2927     // if(TRK1)cout<<"TRK1 ";
2928     // if(TRK2)cout<<"TRK2 ";
2929     // if(TRKh)cout<<"TRKH ";
2930     // if(CAL1)cout<<"CAL1 ";
2931     // if(CAL2)cout<<"CAL2 ";
2932     // if(TOF)cout<<"TOF ";
2933     // if(TRG)cout<<"TRG ";
2934     // if(AC)cout<<"AC ";
2935     // if(ND)cout<<"ND ";
2936     // if(S4)cout<<"S4 ";
2937     // if(ORB)cout<<"ORB ";
2938     // cout << endl;
2939 pam-fi 1.8
2940     return true;
2941 pam-fi 1.2
2942     };
2943    
2944    
2945 pam-fi 1.9 /**
2946     * Create clone-trees
2947     */
2948 pam-fi 1.11 void PamLevel2::CreateCloneTrees0( TChain *fChain, TFile *ofile ){
2949 pam-fi 1.9
2950     cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
2951     cout << "Create clones of PAMELA trees "<<endl;
2952    
2953     Int_t i=0;
2954 pam-fi 1.20 pam_tree_clone[i] = fChain->GetTree()->CloneTree(0);
2955     TString name = pam_tree_clone[i]->GetName();
2956 pam-fi 1.9 name.Append("_clone");
2957 pam-fi 1.20 // pam_tree_clone[i]->SetName(name.Data());
2958     cout << pam_tree_clone[i]->GetName() <<endl;
2959 pam-fi 1.9 i++;
2960    
2961     TList *li = fChain->GetListOfFriends();
2962     TIter next(li);
2963     TFriendElement* T_friend=0;
2964 pam-fi 1.11 ofile->cd();
2965 pam-fi 1.9 while( (T_friend = (TFriendElement*)next()) ){
2966     // cout<<T_friend->IsA()->GetName()<<" "<<T_friend->GetName()<<hex << T_friend->GetTree() << dec<<endl;
2967     // cout<<T_friend->GetTree()->GetName()<< endl;
2968 pam-fi 1.20 pam_tree_clone[i] = T_friend->GetTree()->CloneTree(0);
2969     pam_tree_clone[i]->SetAutoSave(1000000);
2970     name = pam_tree_clone[i]->GetName();
2971 pam-fi 1.9 name.Append("_clone");
2972 pam-fi 1.20 // pam_tree_clone[i]->SetName(name.Data());
2973     cout << pam_tree_clone[i]->GetName() << endl;
2974 pam-fi 1.9 i++;
2975     }
2976 pam-fi 1.13
2977     delete li;
2978 pam-fi 1.9
2979     cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
2980    
2981     }
2982    
2983 pam-fi 1.11 /**
2984     * Create clone-trees
2985     */
2986     void PamLevel2::CreateCloneTrees(TFile *ofile){
2987    
2988 pam-fi 1.39
2989     // if the pointer is null, create a default file
2990    
2991     if(!ofile){
2992     cout << "void PamLevel2::CreateCloneTrees(TFile*) -- WARNING -- Creating file: clone-tree.root "<<endl;
2993     ofile = new TFile("clone-tree.root","recreate");
2994     }
2995    
2996 pam-fi 1.11 ofile->cd();
2997 pam-fi 1.9
2998 pam-fi 1.11 cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
2999     cout << "Create new PAMELA trees "<<endl;
3000 pam-fi 1.9
3001 pam-fi 1.20
3002     run_tree_clone = new TTree("Run","PAMELA Level2 data from the GL_RUN table ");
3003     run_tree_clone->Branch("RunInfo","GL_RUN",GetPointerTo("RunInfo"));
3004     cout << "Run : branch RunInfo"<<endl;
3005     run_tree_clone->Branch("SoftInfo","SoftInfo",GetPointerTo("SoftInfo"));
3006     cout << "Run : branch SoftInfo"<<endl;
3007 pam-fi 1.36 // ------------------
3008     // replicate run tree
3009     // ------------------
3010     cout << "----------------------------------------------------"<<endl;
3011     cout << "irun\t | RUN\t NEVENTS\t absolute time"<<endl;
3012     for (Int_t i=0; i<run_tree->GetEntries(); i++){
3013     run_tree->GetEntry(i);
3014     cout << i<< "\t | "<<GetRunInfo()->ID<<"\t "<<GetRunInfo()->NEVENTS<< "\t "<<GetRunInfo()->RUNHEADER_TIME<<" <---> "<<GetRunInfo()->RUNTRAILER_TIME<<endl;
3015     run_tree_clone->Fill();
3016     }
3017     cout << "----------------------------------------------------"<<endl;
3018 pam-fi 1.20
3019 pam-fi 1.45 // ------------------------------------
3020     // add branch with dead and live times
3021     // ------------------------------------
3022     run_tree_clone->Branch("DeadLiveTime",totdltime,"dltime[3]/l");
3023     cout << "Run : branch DeadLiveTime"<<endl;
3024    
3025 pam-fi 1.20
3026     sel_tree_clone = new TTree("SelectionList","List of selected events ");
3027 pam-fi 1.34 sel_tree_clone->Branch("RunEntry",&irun,"runentry/L");
3028     sel_tree_clone->Branch("EventEntry",&irunentry,"eventry/L");
3029 pam-fi 1.20
3030    
3031 pam-fi 1.11 Int_t i=0;
3032     if(TRK1||TRK2||TRKh){
3033 pam-fi 1.20 pam_tree_clone[i] = new TTree("Tracker","PAMELA tracker level2 data ");
3034 pam-fi 1.11 if(TRK1) {
3035 pam-fi 1.20 pam_tree_clone[i]->Branch("TrkLevel1","TrkLevel1", GetPointerTo("TrkLevel1"));
3036     pam_tree_clone[i]->BranchRef();
3037 pam-fi 1.11 cout << "Tracker : branch TrkLevel1"<<endl;
3038 pam-fi 1.36 // cout << "CreateCloneTrees " << GetTrkLevel1()<<endl;
3039 pam-fi 1.11 };
3040     if(TRK2) {
3041 pam-fi 1.20 pam_tree_clone[i]->Branch("TrkLevel2", "TrkLevel2",GetPointerTo("TrkLevel2"));
3042 pam-fi 1.11 cout << "Tracker : branch TrkLevel2"<<endl;
3043     };
3044     if(TRKh) {
3045 pam-fi 1.20 pam_tree_clone[i]->Branch("TrkHough","TrkHough", GetPointerTo("TrkHough"));
3046 pam-fi 1.11 cout << "Tracker : branch TrkHough"<<endl;
3047     };
3048     i++;
3049     }
3050 pam-fi 1.9
3051 pam-fi 1.11 // Calorimeter
3052     if(CAL1||CAL2){
3053 pam-fi 1.20 pam_tree_clone[i] = new TTree("Calorimeter","PAMELA calorimeter level2 data ");
3054 pam-fi 1.11 if(CAL1) {
3055 pam-fi 1.20 pam_tree_clone[i]->Branch("CaloLevel1", "CaloLevel1", GetPointerTo("CaloLevel1"));
3056 pam-fi 1.11 cout << "Calorimeter : branch CaloLevel1"<<endl;
3057     };
3058     if(CAL2) {
3059 pam-fi 1.20 pam_tree_clone[i]->Branch("CaloLevel2","CaloLevel2", GetPointerTo("CaloLevel2"));
3060 pam-fi 1.11 cout << "Calorimeter : branch CaloLevel2"<<endl;
3061     };
3062     i++;
3063     }
3064 pam-fi 1.9
3065 pam-fi 1.11 // ToF
3066     if(TOF) {
3067 pam-fi 1.20 pam_tree_clone[i] = new TTree("ToF","PAMELA ToF level2 data ");
3068     pam_tree_clone[i]->Branch("ToFLevel2","ToFLevel2", GetPointerTo("ToFLevel2"));
3069 pam-fi 1.11 cout << "ToF : branch ToFLevel2"<<endl;
3070     i++;
3071     };
3072     // Trigger
3073     if(TRG) {
3074 pam-fi 1.20 pam_tree_clone[i] = new TTree("Trigger","PAMELA trigger level2 data ");
3075     pam_tree_clone[i]->Branch("TrigLevel2","TrigLevel2", GetPointerTo("TrigLevel2"));
3076 pam-fi 1.11 cout << "Trigger : branch TrigLevel2"<<endl;
3077     i++;
3078     };
3079     // S4
3080     if(S4) {
3081 pam-fi 1.20 pam_tree_clone[i] = new TTree("S4","PAMELA S4 level2 data ");
3082     pam_tree_clone[i]->Branch("S4Level2","S4Level2", GetPointerTo("S4Level2"));
3083 pam-fi 1.11 cout << "S4 : branch S4Level2"<<endl;
3084     i++;
3085     };
3086     // Neutron Detector
3087     if(ND) {
3088 pam-fi 1.20 pam_tree_clone[i] = new TTree("NeutronD","PAMELA neutron detector level2 data ");
3089     pam_tree_clone[i]->Branch("NDLevel2","NDLevel2", GetPointerTo("NDLevel2"));
3090 pam-fi 1.11 cout << "NeutronD : branch NDLevel2"<<endl;
3091     i++;
3092     };
3093     // Anticounters
3094     if(AC) {
3095 pam-fi 1.20 pam_tree_clone[i] = new TTree("Anticounter","PAMELA anticounter detector level2 data ");
3096     pam_tree_clone[i]->Branch("AcLevel2","AcLevel2", GetPointerTo("AcLevel2"));
3097 pam-fi 1.11 cout << "Anticounter : branch AcLevel2"<<endl;
3098     i++;
3099     };
3100     // OrbitalInfo
3101     if(ORB) {
3102 pam-fi 1.20 pam_tree_clone[i] = new TTree("OrbitalInfo","PAMELA oribital info ");
3103     pam_tree_clone[i]->Branch("OrbitalInfo","OrbitalInfo", GetPointerTo("OrbitalInfo"));
3104 pam-fi 1.11 cout << "OrbitalInfo : branch OrbitalInfo"<<endl;
3105     i++;
3106     };
3107     cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
3108 pam-fi 1.9
3109 pam-fi 1.11 }
3110 pam-fi 1.9
3111    
3112     /**
3113     * Fill tree (created with CreateCloneTrees)
3114     *
3115     */
3116     //void PamLevel2::FillNewPamTree(TTree *T){
3117     void PamLevel2::FillCloneTrees(){
3118 pam-fi 1.20
3119     // cout << "PamLevel2::FillCloneTrees()" << irunentry << endl;
3120 pam-fi 1.24
3121 pam-fi 1.20 for(Int_t i=0; i<NCLONES; i++){
3122     if(pam_tree_clone[i])pam_tree_clone[i]->Fill();
3123     }
3124     if(sel_tree_clone)sel_tree_clone->Fill();
3125 pam-fi 1.21
3126 pam-fi 1.9 }
3127    
3128    
3129     TTree* PamLevel2::GetCloneTree(TString name){
3130    
3131 pam-fi 1.20 for(Int_t i=0; i<NCLONES; i++){
3132     if(pam_tree_clone[i]){
3133     TString na = pam_tree_clone[i]->GetName();
3134     if(!name.CompareTo(na))return pam_tree_clone[i];
3135 pam-fi 1.9 };
3136     }
3137 pam-fi 1.20 if(run_tree_clone){
3138     TString na = run_tree_clone->GetName();
3139     if(!name.CompareTo(na))return run_tree_clone;
3140     }
3141     if(sel_tree_clone){
3142     TString na = sel_tree_clone->GetName();
3143     if(!name.CompareTo(na))return sel_tree_clone;
3144     }
3145 pam-fi 1.9 return NULL;
3146    
3147     }
3148     void PamLevel2::WriteCloneTrees(){
3149     cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
3150     cout << "Write clones of PAMELA trees "<<endl;
3151 pam-fi 1.45 cout << run_tree_clone->GetName()<<endl;
3152     if(run_tree_clone->GetBranch("DeadLiveTime")->GetEntries() < run_tree->GetEntries())
3153     run_tree_clone->GetBranch("DeadLiveTime")->Fill();
3154 pam-fi 1.20 run_tree_clone->Write();
3155     cout << sel_tree_clone->GetName()<<endl;
3156     sel_tree_clone->Write();
3157     for(Int_t i=0; i<NCLONES; i++){
3158     if(pam_tree_clone[i]){
3159     cout << pam_tree_clone[i]->GetName()<<endl;
3160     pam_tree_clone[i]->Write();
3161 pam-fi 1.9 };
3162     }
3163     cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
3164    
3165     }
3166    
3167     /**
3168 pam-fi 1.24 * Method to get level2-trees entry, the corresponding run entry and (if required) the level0 entry.
3169 pam-fi 1.9 */
3170 pam-fi 1.33 //Int_t PamLevel2::GetEntry(Int_t iee){
3171     Int_t PamLevel2::GetEntry(Long64_t iee){
3172 pam-fi 1.9
3173 pam-fi 1.39 // cout << "-------------------------------------"<<endl;
3174     // cout << "Int_t PamLevel2::GetEntry("<<iee<<")"<<endl;
3175    
3176 pam-fi 1.20 if(!pam_tree){
3177 mocchiut 1.28 cout << " Int_t PamLevel2::GetEntry(Int_t) -- ERROR -- level2 trees not loaded"<<endl;
3178 pam-fi 1.20 return 0;
3179     }
3180 mocchiut 1.28
3181    
3182     //
3183     // This is a sort of bug: if you don't have the run tree you don't want to exit here you want to have loaded the event anyway...
3184     //
3185     // if(!run_tree ){
3186     // cout << " Int_t PamLevel2::GetEntry(Int_t) -- ERROR -- run tree not loeaded"<<endl;
3187     // return 0;
3188     // }
3189 pam-fi 1.20
3190 pam-fi 1.33 Long64_t ii=0;
3191 pam-fi 1.20 //-------------------------------
3192     ii = iee;
3193 pam-fi 1.33 if( !pam_tree->GetEntry(ii) ){
3194     cout << " Int_t PamLevel2::GetEntry(Int_t) -- ERROR -- error reading pam tree"<<endl;
3195     return 0;
3196     }
3197 mocchiut 1.28 //
3198     // ... that's way I put it here. Notice that nothing change in the code (is backward compatible) since in any case you return with 0.
3199     // in theory one would like to return 1 if run is not loaded but now I don't have the will to add that 2 lines of code and it is not
3200     // a problem if you don't check the return code of getentry.
3201     //
3202     if(!run_tree ){
3203 mocchiut 1.29 if ( TRK0 || CAL0 || TOF0 || RUN ) { //forse cosi` va bene per tornare 1?
3204 pam-fi 1.36 cout << " Int_t PamLevel2::GetEntry(Int_t) -- ERROR -- run tree not loaded"<<endl;
3205     return 0;
3206 mocchiut 1.29 } else {
3207 pam-fi 1.36 return 1; //cosi` se non c'e` run esce qua...
3208 mocchiut 1.29 }
3209 mocchiut 1.28 }
3210    
3211 pam-fi 1.20 //-------------------------------
3212     ii = iee;
3213 pam-fi 1.33 // Bool_t UPDATED = UpdateRunInfo(run_tree,ii);
3214 pam-fi 1.36 // Bool_t UPDATED = UpdateRunInfo(ii);
3215     UpdateRunInfo(ii);
3216 pam-fi 1.20 if(SELLI==0)irunentry = iee-runfirstentry;
3217 pam-fi 1.36 // if(UPDATED && run_tree_clone)run_tree_clone->Fill();
3218    
3219 pam-fi 1.20 // cout << "PamLevel2::GetEntry("<<iee<<") "<<irun<<" "<<runfirstentry<<" "<<irunentry<<endl;
3220    
3221 pam-fi 1.39 // cout << "irunentry "<<irunentry << endl;
3222     // cout << "runfirstentry "<<runfirstentry << endl;
3223     // cout << "nevents "<<GetRunInfo()->NEVENTS<< endl;
3224 pam-fi 1.40
3225     // if( TRK0 || CAL0 || TOF0 ){
3226     // if( !GetYodaEntry( ) ){
3227     // cout << " Int_t PamLevel2::GetEntry(Int_t) -- ERROR -- error reading level0 tree"<<endl;
3228     // return 0;
3229     // }
3230     // }
3231    
3232    
3233 pam-fi 1.20 return 1;
3234    
3235     }
3236    
3237 pam-fi 1.40 TrkLevel0 *PamLevel2::GetTrkLevel0(){
3238     if( !TRK0 )return NULL;
3239     if( !GetYodaEntry( ) ){
3240     cout << " Int_t PamLevel2::GetTrkLevel0() -- ERROR -- error reading level0 tree"<<endl;
3241     return 0;
3242     }
3243     return trk0_obj;
3244     };
3245     CaloLevel0 *PamLevel2::GetCaloLevel0(){
3246     if( !CAL0 )return NULL;
3247     if( !GetYodaEntry( ) ){
3248     cout << " Int_t PamLevel2::GetCaloLevel0() -- ERROR -- error reading level0 tree"<<endl;
3249     return 0;
3250     }
3251     return calo0_obj;
3252     };
3253    
3254    
3255 pam-fi 1.20 /**
3256     * Method to retrieve the level0 tree (YODA tree) that contains the current event.
3257     * Given the run ID (...), if needed it query the DB and load the proper file.
3258     * @return Pointer to the tree
3259     */
3260    
3261    
3262     TTree* PamLevel2::GetYodaTree( ){
3263    
3264     // cout << "TTree* PamLevel2::GetYodaTree( )"<<endl;
3265     //===================================
3266     // check if iroot has changed
3267     //===================================
3268     if( irun<0 ){
3269 pam-fi 1.34 cout << "PamLevel2::GetYodaTree() -- ERROR -- irun = "<<irun<<endl;
3270     // cout << "In order to use this method you have to first load the RunInfo tree "<<endl;
3271 pam-fi 1.20 return NULL;
3272     }
3273     Int_t irootnew = run_obj->ID_ROOT_L0;
3274 pam-fi 1.39 // cout << "iroot "<<iroot<<endl;
3275     // cout << "irootnew "<<irootnew<<endl;
3276 pam-fi 1.20
3277     //===================================
3278     // load the level0 file
3279     // (if not already loaded)
3280     //===================================
3281     if( iroot != irootnew || !l0_tree){
3282     iroot = irootnew;
3283     //===================================
3284     // open the DB connection
3285     // (if not already opened)
3286     //===================================
3287     if(!dbc || (dbc && !dbc->IsConnected())){
3288     cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
3289     cout<<"Connecting to DB"<<endl;
3290     cout<<"HOST "<<host<<endl;
3291     cout<<"USER "<<user<<endl;
3292     cout<<"PSW "<<psw<<endl;
3293     dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
3294     if( !dbc )return NULL;
3295     if( !dbc->IsConnected() )return NULL;
3296     // cout<<"...done"<<endl;
3297     cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
3298     }else{
3299     // cout<<"DB already connected"<<endl;
3300     }
3301     GL_ROOT glroot = GL_ROOT();
3302 pam-fi 1.24 if( glroot.Query_GL_ROOT(iroot,dbc) ){
3303     cout << "TTree* PamLevel2::GetYodaTree( ) -- ERROR -- level0 file iroot = "<<iroot<< " does not exists"<<endl;
3304     return NULL;
3305     };
3306 pam-fi 1.20 TString filename = glroot.PATH + glroot.NAME;
3307     if(l0_file){
3308     l0_file->Close();
3309     l0_file->Delete();
3310     }
3311     cout << "Opening LEVEL0 file: "<< filename << endl;
3312     FileStat_t t;
3313     if( gSystem->GetPathInfo(filename.Data(),t) ){
3314     cout << " PamLevel2::GetYodaTree() -- ERROR opening file "<<endl;
3315     return NULL;
3316     }
3317     l0_file = new TFile(filename);
3318     if( !l0_file )return NULL;
3319     l0_tree = (TTree*)l0_file->Get("Physics");
3320     if(!h0_obj)h0_obj = new EventHeader();
3321     l0_tree->SetBranchAddress("Header" ,&h0_obj);
3322 mocchiut 1.30 prevshift = 0;
3323 pam-fi 1.20 //---------------------------------------------------
3324     // TRACKER:
3325     if(TRK0){
3326     if(!trk0_obj){
3327     trk0_obj = new TrkLevel0();
3328     trk0_obj->Set();
3329     };
3330     l0_tree->SetBranchAddress("Tracker" ,trk0_obj->GetPointerToTrackerEvent());
3331     }
3332 pam-fi 1.40 //--------------------------------------------------
3333 pam-fi 1.20 // CALORIMETER:
3334     if(CAL0){
3335 mocchiut 1.30 if(!calo0_obj){
3336     calo0_obj = new CaloLevel0();
3337     calo0_obj->Set();
3338     };
3339     l0_tree->SetBranchAddress("Calorimeter" ,calo0_obj->GetPointerToCalorimeterEvent());
3340     // cout << "PamLevel2::GetYodaTree() --- level0 calorimeter not implemented "<<endl;
3341 pam-fi 1.20 }
3342     //---------------------------------------------------
3343     // TOF:
3344     if(TOF0){
3345     cout << "PamLevel2::GetYodaTree() --- level0 TOF not implemented "<<endl;
3346     }
3347    
3348     };
3349    
3350 pam-fi 1.26 if(!dbc || (dbc && !dbc->IsConnected())){
3351     cout << " TTree* PamLevel2::GetYodaTree( ) -- no DB connected... hai fatto qualche cazzata "<<endl;
3352     }
3353    
3354 pam-fi 1.33 if ( TRK0 ){
3355     TrkParams::Load(6);
3356     if( !TrkParams::IsLoaded(6) ){
3357     cout << " TTree* PamLevel2::GetYodaTree( ) -- WARNING -- VK-mask not loaded"<<endl;
3358     };
3359     TrkParams::SetCalib(run_obj,dbc);
3360     TrkParams::LoadCalib( );
3361     if( !TrkParams::CalibIsLoaded() ){
3362     cout << " TTree* PamLevel2::GetYodaTree( ) -- WARNING -- Calibration not loaded"<<endl;
3363     };
3364     }
3365 pam-fi 1.26
3366 pam-fi 1.24 // cout << l0_tree << endl;
3367    
3368 pam-fi 1.20 return l0_tree;
3369 pam-fi 1.9
3370 pam-fi 1.20 }
3371 pam-fi 1.9
3372 pam-fi 1.20 /**
3373     * Method to retrieve the level0 tree (YODA tree) that contains the current event.
3374     */
3375     Int_t PamLevel2::GetYodaEntry(){
3376 pam-fi 1.9
3377 pam-fi 1.20 // cout << "Int_t PamLevel2::GetYodaEntry()"<<endl;
3378     if(!GetYodaTree())return 0;
3379    
3380 pam-fi 1.27 // patch
3381 pam-fi 1.33 if( irunentry < 0){
3382 pam-fi 1.36 // cout << "Int_t PamLevel2::GetYodaEntry() -- ATTENZIONE -- irunentry negativo?!?! "<<(Int_t)irunentry<<endl;
3383 pam-fi 1.33 irunentry=0LL;
3384 pam-fi 1.27 }
3385 pam-fi 1.20 // ---------------------------------
3386     // if file is NOT a preselected file
3387     // ---------------------------------
3388 pam-fi 1.33 Long64_t quellagiusta = irunentry + (Long64_t)(run_obj->EV_FROM);
3389 pam-fi 1.36 // cout << " irunentry "<<irunentry<<endl;
3390     // cout << " EV_FROM "<<run_obj->EV_FROM<<endl;
3391     // cout << " quellagiusta = irunentry + EV_FROM "<< quellagiusta << endl;
3392 pam-fi 1.24
3393 pam-fi 1.26 // cout << " irun "<< irun << " irunentry "<< irunentry<<" run_obj->EV_FROM "<<run_obj->EV_FROM <<" quella giusta "<<quellagiusta << endl;
3394     // cout << " iroot "<<iroot<<" run_obj->ID_ROOT_L0 "<<run_obj->ID_ROOT_L0<<endl;
3395 pam-fi 1.43 // cout << " time "<< abstime << endl;
3396 pam-fi 1.26 // cout << " trk_calib_used "<<run_obj->TRK_CALIB_USED<< endl;
3397    
3398 pam-fi 1.43 ULong64_t obt = 0;
3399     ULong64_t pktn = 0;
3400     if( GetOrbitalInfo() ){
3401     obt = GetOrbitalInfo()->OBT;
3402     pktn = GetOrbitalInfo()->pkt_num;
3403     }
3404    
3405     if( !GetOrbitalInfo() && !ISGP){
3406 pam-fi 1.24 cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- missing OrbitalInfo "<<endl;
3407     return 0;
3408     }
3409 pam-fi 1.43 if( obt==0 && pktn==0 && !ISGP ){
3410 pam-fi 1.34 cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- level2 event corrupted ?? "<<endl;
3411     return 0;
3412     }
3413 pam-fi 1.24
3414     // ---------------------------------------------------------------------
3415     // ATTENTION!!!
3416     // If data are not pre-processed with cleaner, the level0 tree may contain
3417     // spurious nested physics packets.
3418     // The GL_RUN variables EV_FROM, EV_TO and NEVENTS counts also these entries
3419     // while level2 tree DOES NOT!!
3420     // This means that "quellagiusta" in these cases is not correct.
3421     // In order to retrieve the correct level0 event, I implemented a check
3422     // of the OBT and pkt-number. In case of mismatch, the level0 entry number
3423     // is shift forward until when the packets match.
3424     // ---------------------------------------------------------------------
3425     Int_t answer = 0;
3426     Int_t shift =0;
3427 mocchiut 1.31 // printf(" siamo qui %i %i \n",shift,prevshift);
3428 pam-fi 1.39 Int_t maxshift = 10;
3429 pam-fi 1.24 do{
3430 mocchiut 1.30 if(shift>0){
3431 pam-fi 1.43 cout << " PKTNUM L2 --- "<< pktn << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetCounter()<<endl;
3432 pam-fi 1.36 cout << " RUN: ID "<< GetRunInfo()->ID << " ID_ROOT_L0 "<<run_obj->ID_ROOT_L0<<" ID_RUN_FRAG "<<GetRunInfo()->ID_RUN_FRAG << " EV_FROM "<<GetRunInfo()->EV_FROM <<endl;
3433     cout << " L2 <--> L0 mismatch ( irun "<<irun<<" irunentry "<<irunentry<<" shift "<<shift<<" prevshift "<<prevshift<<" )"<<endl;
3434 pam-fi 1.26 }
3435 pam-fi 1.33 answer = l0_tree->GetEntry(quellagiusta+(Long64_t)shift+(Long64_t)prevshift);
3436 pam-fi 1.24 shift++;
3437     if( !GetEventHeader() ){
3438     cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- missing EventHeader "<<endl;
3439     return 0;
3440     }
3441 pam-fi 1.43
3442     if(ISGP){
3443     obt = (UInt_t)(GetEventHeader()->GetPscuHeader()->GetOrbitalTime()); //BARBATRUCCO
3444     pktn = (UInt_t)(GetEventHeader()->GetPscuHeader()->GetCounter()); //BARBATRUCCO
3445     }
3446    
3447     // cout << "PKTNUM "<<shift<<" == L2 --- "<< pktn << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetCounter()<<endl;
3448     // cout << " L2 --- "<< obt << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetOrbitalTime()<<endl;
3449 pam-fi 1.26 // if( (quellagiusta+shift) == l0_tree->GetEntries()+1 )cout << ">>> end of level0 tree <<<"<<endl;
3450 pam-fi 1.43 // cout << " obt "<< obt << endl;
3451 pam-fi 1.26 // cout << " GetEventHeader()->GetPscuHeader()->GetOrbitalTime() "<< GetEventHeader()->GetPscuHeader()->GetOrbitalTime() << endl;
3452 pam-fi 1.43 // cout << " pktn "<< pktn << endl;
3453 pam-fi 1.26 // cout << " GetEventHeader()->GetPscuHeader()->GetCounter() "<< GetEventHeader()->GetPscuHeader()->GetCounter() << endl;
3454 mocchiut 1.31 // printf(" IDRUN %u \n",GetRunInfo()->ID);
3455     //
3456 pam-fi 1.33 if ( prevshift != 0 && (quellagiusta+(Long64_t)shift) == GetYodaTree()->GetEntries() ){
3457 mocchiut 1.30 prevshift = 0;
3458     shift = -1;
3459     };
3460 pam-fi 1.26
3461 pam-fi 1.43 }while( ( obt != (UInt_t)(GetEventHeader()->GetPscuHeader()->GetOrbitalTime()) ||
3462     pktn != (UInt_t)(GetEventHeader()->GetPscuHeader()->GetCounter()) )
3463     && (quellagiusta+(Long64_t)shift) < GetYodaTree()->GetEntries() && shift < maxshift);
3464 mocchiut 1.30
3465 pam-fi 1.39 if ( (quellagiusta+(Long64_t)shift+(Long64_t)prevshift) > GetYodaTree()->GetEntries() || shift == maxshift ) {
3466 pam-fi 1.36 cout << " Big trouble here, no such event in Level0 data! " <<endl;
3467     return 0;
3468     }
3469 pam-fi 1.20 // cout << "LA ENTRY GIUSTA E`: "<<quellagiusta<<" (spero...)"<<endl;
3470 pam-fi 1.24 // return GetYodaTree()->GetEntry(quellagiusta);
3471 mocchiut 1.30 if ( shift > 1 ) prevshift += (shift-1);
3472 pam-fi 1.20
3473 pam-fi 1.24 return answer;
3474 pam-fi 1.20
3475     }
3476 pam-fi 1.40 /**
3477     * \Brief Set DB connection
3478     */
3479     Bool_t PamLevel2::SetDBConnection(){
3480 mocchiut 1.30
3481 pam-fi 1.40 cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
3482     cout<<"Connecting to DB"<<endl;
3483     cout<<"HOST "<<host<<endl;
3484     cout<<"USER "<<user<<endl;
3485     cout<<"PSW "<<psw<<endl;
3486     dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
3487     if( !dbc )return false;
3488     if( !dbc->IsConnected() )return false;
3489     cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
3490     return true;
3491 mocchiut 1.30
3492 pam-fi 1.40 }
3493 pam-fi 1.45
3494     /**
3495     * \Brief Add a friend to the pamela chain.
3496     * @param cname name of the chain to be added
3497     */
3498    
3499     TChain* PamLevel2::AddFriend(TString cname){
3500    
3501     if(!GetPamTree()){
3502     cout << " TChain* PamLevel2::AddFriend(TString cname) --- a pamela tree must be created first"<<endl;
3503     return NULL;
3504     }
3505    
3506    
3507     TChain *c = new TChain( cname.Data() );
3508    
3509     TIter next( GetPamTree()->GetListOfFiles() );
3510     Int_t nf = 0;
3511     TChainElement* element = 0;
3512     while ((element = (TChainElement*) next())) {
3513     c->Add(element->GetTitle());
3514     nf++;
3515     }
3516    
3517     GetPamTree()->AddFriend(cname.Data());
3518    
3519     cout << "external chain created and added to pamela friends :"<<cname<<endl;
3520     cout << "n.files "<<nf<<endl;
3521    
3522    
3523     return c;
3524    
3525     }

  ViewVC Help
Powered by ViewVC 1.1.23