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

Annotation of /PamelaLevel2/src/PamLevel2.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.7 - (hide annotations) (download)
Fri Oct 27 11:33:19 2006 UTC (18 years, 1 month ago) by pam-fi
Branch: MAIN
Changes since 1.6: +20 -17 lines
bug in PamLevel2::CheckLevel2File(TString)

1 pam-fi 1.1 #include <PamLevel2.h>
2     //--------------------------------------
3     //
4     //
5     //--------------------------------------
6     /**
7     * Default constructor
8     */
9     PamTrack::PamTrack(){
10     trk_track = this->TrkTrack::GetTrkTrack();
11     calo_track = this->CaloTrkVar::GetCaloTrkVar();
12     tof_track = this->ToFTrkVar::GetToFTrkVar();
13     };
14     //--------------------------------------
15     //
16     //
17     //--------------------------------------
18     /**
19     * Constructor
20     */
21     PamTrack::PamTrack(TrkTrack* t, CaloTrkVar* c, ToFTrkVar* o){
22     trk_track = this->TrkTrack::GetTrkTrack();
23     calo_track = this->CaloTrkVar::GetCaloTrkVar();
24     tof_track = this->ToFTrkVar::GetToFTrkVar();
25     if(t) *trk_track = *t;
26     if(c) *calo_track = *c;
27 pam-fi 1.3 if(o) *tof_track = *o;
28 pam-fi 1.1 };
29    
30     //--------------------------------------
31     //
32     //
33     //--------------------------------------
34     /**
35     * Constructor
36     */
37     PamLevel2::PamLevel2(){
38 pam-fi 1.2
39 pam-fi 1.4 trk_l1_obj = this->TrkLevel1::GetTrkLevel1();
40 pam-fi 1.6 trk_obj = this->TrkLevel2::GetTrkLevel2();
41     calo_obj = this->CaloLevel2::GetCaloLevel2();
42 pam-fi 1.4 tof_obj = this->ToFLevel2::GetToFLevel2();
43     trig_obj = this->TrigLevel2::GetTrigLevel2();
44     s4_obj = this->S4Level2::GetS4Level2();
45     nd_obj = this->NDLevel2::GetNDLevel2();
46     ac_obj = this->AcLevel2::GetAcLevel2();
47 pam-fi 1.6 orb_obj = this->OrbitalInfo::GetOrbitalInfo();
48 pam-fi 1.2
49 pam-fi 1.6 run_obj = new GL_RUN();
50    
51     sorted_tracks = new TRefArray();
52    
53     CAL = true;
54     TRK = true;
55     TRG = true;
56     TOF = true;
57     S4 = true;
58     ND = true;
59     AC = true;
60     ORB = true;
61    
62     TRK_L1 = false;
63    
64     Tout = NULL;
65 pam-fi 1.2 };
66     /**
67     * Destructor
68     */
69     PamLevel2::~PamLevel2(){
70    
71 pam-fi 1.6 TrkLevel1::Clear();
72    
73     TrkLevel2::Clear();
74     CaloLevel2::Clear();
75     ToFLevel2::Clear();
76     TrigLevel2::Clear();
77     S4Level2::Clear();
78     NDLevel2::Clear();
79     AcLevel2::Clear();
80     OrbitalInfo::Clear();
81    
82     delete run_obj;
83    
84 pam-fi 1.4 // delete sorted_tracks;
85 pam-fi 1.6 sorted_tracks->Delete(); // clean the reference array
86 pam-fi 1.4
87 pam-fi 1.6 if(Tout)Tout->Delete(); // delete loaded tree from memory
88 pam-fi 1.2
89     };
90     /**
91     * Clear the event
92     */
93     void PamLevel2::Clear(){
94 pam-fi 1.3
95 pam-fi 1.6 TrkLevel1::Clear();
96 pam-fi 1.2
97 pam-fi 1.6 TrkLevel2::Clear();
98     CaloLevel2::Clear();
99     ToFLevel2::Clear();
100     TrigLevel2::Clear();
101     S4Level2::Clear();
102     NDLevel2::Clear();
103     AcLevel2::Clear();
104     OrbitalInfo::Clear();
105    
106     sorted_tracks->Delete(); // clean the reference array
107    
108 pam-fi 1.1 };
109 pam-fi 1.2
110    
111 pam-fi 1.1 //--------------------------------------
112     //
113     //
114     //--------------------------------------
115     /**
116 pam-fi 1.3 * Retrieves the calorimeter track matching the seqno-th tracker stored track.
117     * (If seqno = -1 retrieves the self-trigger calorimeter track)
118     */
119     CaloTrkVar *PamLevel2::GetCaloStoredTrack(int seqno){
120    
121 pam-fi 1.6 if( CaloLevel2::ntrk()==0 ){
122     cout << "PamLevel2::GetCaloStoredTrack(int) : requested tracker SeqNo "<< seqno <<" but no Calorimeter tracks are stored"<<endl;
123     return NULL;
124     };
125    
126     CaloTrkVar *c = 0;
127     Int_t it_calo=0;
128    
129     do{
130     c = CaloLevel2::GetCaloTrkVar(it_calo);
131     it_calo++;
132     } while( c && seqno != c->trkseqno && it_calo < CaloLevel2::ntrk());
133    
134     if(!c || seqno != c->trkseqno){
135     c = 0;
136     if(seqno!=-1)cout << "PamLevel2::GetCaloStoredTrack(int) : requested tracker SeqNo "<< seqno <<" does not match Calorimeter stored tracks"<<endl;
137     };
138     return c;
139    
140 pam-fi 1.3 };
141     //--------------------------------------
142     //
143     //
144     //--------------------------------------
145     /**
146     * Retrieves the ToF track matching the seqno-th tracker stored track.
147     * (If seqno = -1 retrieves the tracker-independent tof track)
148     */
149     ToFTrkVar *PamLevel2::GetToFStoredTrack(int seqno){
150    
151 pam-fi 1.6 if( ToFLevel2::ntrk()==0 ){
152     cout << "PamLevel2::GetToFStoredTrack(int) : requested tracker SeqNo "<< seqno <<" but no ToF tracks are stored"<<endl;
153     return NULL;
154     };
155    
156     ToFTrkVar *c = 0;
157     Int_t it_tof=0;
158    
159     do{
160     c = ToFLevel2::GetToFTrkVar(it_tof);
161     it_tof++;
162     } while( c && seqno != c->trkseqno && it_tof < ToFLevel2::ntrk());
163    
164     if(!c || seqno != c->trkseqno){
165     c = 0;
166     if(seqno!=-1)cout << "PamLevel2::GetToFStoredTrack(int) : requested tracker SeqNo "<< seqno <<" does not match ToF stored tracks"<<endl;
167     };
168     return c;
169    
170 pam-fi 1.3 };
171    
172     //--------------------------------------
173     //
174     //
175     //--------------------------------------
176     /**
177     * Give the pamela track associated to a tracker track, retrieving related calorimeter and tof track information.
178     */
179     PamTrack* PamLevel2::GetPamTrackAlong(TrkTrack* t){
180    
181 pam-fi 1.6 CaloTrkVar *c = 0;
182     ToFTrkVar *o = 0;
183    
184     if(CAL) c = GetCaloStoredTrack(t->GetSeqNo());
185     if(TOF) o = GetToFStoredTrack(t->GetSeqNo());
186    
187 pam-fi 1.3 // if(t && c && o)track = new PamTrack(t,c,o);
188 pam-fi 1.6 PamTrack *track = new PamTrack(t,c,o);
189    
190     return track;
191 pam-fi 1.3
192     };
193     //--------------------------------------
194     //
195     //
196     //--------------------------------------
197     /**
198 pam-fi 1.1 * Retrieves the it-th stored track.
199     * It override TrkLevel2::GetTrack(int it).
200     * @param itrk Track number, ranging from 0 to GetNTracks().
201     */
202    
203     PamTrack* PamLevel2::GetStoredTrack(Int_t itrk){
204    
205 pam-fi 1.6 PamTrack *track = 0;
206    
207     if( itrk >=0 && itrk < TrkLevel2::ntrk() ){
208 pam-fi 1.3
209 pam-fi 1.6 TrkTrack *t = TrkLevel2::GetStoredTrack(itrk);
210     track = GetPamTrackAlong(t);
211 pam-fi 1.2
212 pam-fi 1.6 }else{
213     cout << "PamLevel2::GetStoredTrack(int) : tracker track SeqNo "<< itrk <<" does not exist (GetNTracks() = "<<TrkLevel2::GetNTracks()<<")"<<endl;
214     };
215    
216     return track;
217    
218 pam-fi 1.1 }
219     //--------------------------------------
220     //
221     //
222     //--------------------------------------
223     /**
224 pam-fi 1.3 * Sort physical (tracker) tracks and stores them in the TRefArray (of TrkTrack objects) which pointer is PamLevel2::sorted_tracks.
225     * @param how String to set the sorting cryterium (es: "CAL" or "TRK+CAL+TOF" ecc...).
226     * Sorting cryteria:
227     * TRK: lower chi**2
228     * CAL: lower Y spatial residual on the first calorimeter plane
229     * TOF: bigger numebr of hit PMTs along the track, on S12 S21 S32 (where paddles are along the Y axis).
230     * The default sorting cryterium is "TOF+CAL".
231     *
232     * 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).
233 pam-fi 1.1 */
234 pam-fi 1.3 void PamLevel2::SortTracks(TString how){
235 pam-fi 1.1
236 pam-fi 1.4 //Save current Object count
237 pam-fi 1.6 Int_t ObjectNumber = TProcessID::GetObjectCount();
238    
239     sorted_tracks->Delete(); //temporaneo???
240 pam-fi 1.4
241 pam-fi 1.6 // loop over the tracks sorted by the tracker
242     Bool_t use_TRK = how.Contains("TRK", TString::kIgnoreCase);
243     Bool_t use_CAL = how.Contains("CAL", TString::kIgnoreCase);
244     Bool_t use_TOF = how.Contains("TOF", TString::kIgnoreCase);
245    
246     if( !CAL && use_CAL) use_CAL = false;
247     if( !TOF && use_TOF) use_TOF = false;
248    
249     if( !TRK ){
250     cout << "SortTracks() : without tracker does not work!!! (not yet)" << endl;
251     return;
252     };
253    
254     for(Int_t i=0; i < TrkLevel2::GetNTracks(); i++){
255 pam-fi 1.4
256 pam-fi 1.6 TrkTrack *ts = 0;
257 pam-fi 1.3
258 pam-fi 1.1 // get tracker tracks
259 pam-fi 1.6 TrkTrack *tp = TrkLevel2::GetTrack(i); //tracker
260 pam-fi 1.5 // CaloTrkVar *cp = GetCaloStoredTrack(tp->GetSeqNo());
261     // ToFTrkVar *op = GetToFStoredTrack(tp->GetSeqNo());
262 pam-fi 1.6 CaloTrkVar *cp = 0;
263     ToFTrkVar *op = 0;
264    
265 pam-fi 1.1 // if track has an image, check image selection
266 pam-fi 1.6 if(tp->HasImage()){
267    
268     TrkTrack *ti = TrkLevel2::GetTrackImage(i); //tracker (image)
269 pam-fi 1.5 // CaloTrkVar *ci = GetCaloStoredTrack(ti->GetSeqNo());
270     // ToFTrkVar *oi = GetToFStoredTrack(ti->GetSeqNo());
271 pam-fi 1.6 CaloTrkVar *ci = 0;
272     ToFTrkVar *oi = 0;
273    
274 pam-fi 1.1 //assign starting scores
275 pam-fi 1.6 Int_t tp_score = 0; //main track sorted by the tracker
276     Int_t ti_score = 0; //image track
277    
278 pam-fi 1.1 // ------------------------
279     // calorimeter check
280     // ------------------------
281 pam-fi 1.6 // check the Y spatial residual on the first calorimeter plane
282     // (cut on calorimeter variables from Emiliano)
283     if(
284     use_CAL &&
285     npcfit[1] > 15 && //no. of fit planes on Y view
286     varcfit[1] < 1000. && //fit variance on Y view
287     true){
288    
289     cp = GetCaloStoredTrack(tp->GetSeqNo());
290     ci = GetCaloStoredTrack(ti->GetSeqNo());
291    
292     Float_t resy_p = cp->tbar[0][1] - cbar[0][1]; if(resy_p < 0)resy_p= - resy_p;
293     Float_t resy_i = ci->tbar[0][1] - cbar[0][1]; if(resy_i < 0)resy_i= - resy_i;
294    
295     if(resy_p <= resy_i) tp_score++;
296     else ti_score++;
297     };
298 pam-fi 1.1 // ------------------------
299     // TOF check
300     // ------------------------
301 pam-fi 1.6 // check the number of hit pmts along the track
302     // on S12 S21 and S32, where paddles are parallel to Y axis
303     if( use_TOF ){
304    
305     Int_t nphit_p =0;
306     Int_t nphit_i =0;
307    
308     op = GetToFStoredTrack(tp->GetSeqNo());
309     oi = GetToFStoredTrack(ti->GetSeqNo());
310    
311 pam-fi 1.5 /* cout << "track: npmtadc "<< op->npmtadc << endl;
312     cout << "track: npmttdc "<< op->npmttdc << endl;
313     cout << "image: npmtadc "<< oi->npmtadc << endl;
314     cout << "image: npmttdc "<< oi->npmttdc << endl;*/
315 pam-fi 1.6
316     for (Int_t ih=0; ih < op->npmtadc; ih++){
317     Int_t pl = GetPlaneIndex( (op->pmtadc).At(ih) );
318     if(pl == 1 || pl == 2 || pl == 5)nphit_p++;
319     };
320    
321     for (Int_t ih=0; ih < oi->npmtadc; ih++){
322     Int_t pl = GetPlaneIndex( (oi->pmtadc).At(ih) );
323     if(pl == 1 || pl == 2 || pl == 5)nphit_i++;
324     };
325    
326     if(
327     use_TOF &&
328     (nphit_p+nphit_i) !=0 &&
329     true){
330    
331     if( nphit_p >= nphit_i) tp_score++;
332     else ti_score++;
333     };
334     };
335     if(tp_score == ti_score) use_TRK = true;
336     // ------------------------
337 pam-fi 1.3 // tracker check
338     // ------------------------
339 pam-fi 1.6 // chi**2 difference is not always large enough to distinguish among
340     // the real track and its image.
341     // Tracker check will be applied always when calorimeter and tof information is ambiguous.
342     if(use_TRK){
343     if( tp->chi2 > 0 && tp->chi2 < ti->chi2 ) tp_score++ ;
344     else if( ti->chi2 > 0 && ti->chi2 < tp->chi2 ) ti_score++ ;
345     };
346    
347 pam-fi 1.1 // ------------------------
348     // the winner is....
349     // ------------------------
350 pam-fi 1.6 if (tp_score > ti_score) ts = tp;//the track sorted by the tracker!!
351     else if (tp_score < ti_score) ts = ti;//its image!!
352     else {
353     ts = tp;
354 pam-fi 1.3 // cout << "Warning - track image ambiguity not solved" << endl;
355     // cout << ts->GetNtot() << " "<< ts->chi2 << " " << npcfit[1] << " "<< nphit_p << endl;
356 pam-fi 1.6 };
357    
358     }else{
359     ts = tp;
360     };
361    
362 pam-fi 1.4 // cout <<" SortTracks() "<<i<<" -- "<<ts<<endl;
363 pam-fi 1.6 sorted_tracks->Add(ts);//save the track in the sorted array
364 pam-fi 1.4 // cout << "SortTracks:: sorted_tracks->Add(it) "<<i<<" "<<ts<<endl;
365 pam-fi 1.6
366     };
367     //Restore Object count
368     //To save space in the table keeping track of all referenced objects
369     //we assume that our events do not address each other. We reset the
370     //object count to what it was at the beginning of the event.
371     TProcessID::SetObjectCount(ObjectNumber);
372    
373 pam-fi 1.1 };
374     //--------------------------------------
375     //
376     //
377     //--------------------------------------
378     /**
379 pam-fi 1.2 * This method overrides TrkLevel2::GetTracks(), where sorting is done by decreasing number of fit points and increasing chi^2.
380     * PamLevel2::GetTracks() keeps the same track order given by TrkLevel2::GetTracks(), but checks image selection by using calorimeter and ToF tracking information.
381     */
382     TRefArray *PamLevel2::GetTracks(){
383 pam-fi 1.4 //
384 pam-fi 1.5 // SortTracks("+CAL+TOF");
385     SortTracks("+CAL+TRK");//TEMP!!!!!!!!!!!!!
386 pam-fi 1.4 //
387 pam-fi 1.2 return sorted_tracks;
388     };
389     //--------------------------------------
390 pam-fi 1.3 //
391     //
392 pam-fi 1.2 //--------------------------------------
393     /**
394 pam-fi 1.1 * Retrieves the it-th Pamela "physical" track.
395     * It override TrkLevel2::GetTrack(int it).
396     * @param it Track number, ranging from 0 to GetNTracks().
397     */
398     PamTrack *PamLevel2::GetTrack(int it){
399 pam-fi 1.3
400     // *-*-*-*-*-*-*
401 pam-fi 1.5 // SortTracks("+CAL+TOF");
402 pam-fi 1.6 SortTracks("+CAL+TRK");//TEMP!!!!!!!!!!!!!
403 pam-fi 1.3 // *-*-*-*-*-*-*
404 pam-fi 1.1
405 pam-fi 1.6 PamTrack *track = 0;
406    
407     if( it >=0 && it < TrkLevel2::GetNTracks() && it<sorted_tracks->GetEntriesFast() ){
408     TrkTrack *t = (TrkTrack*)sorted_tracks->At(it);
409     track = GetPamTrackAlong(t);
410     }else{
411     cout << "PamLevel2::GetTrack(int) : tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<TrkLevel2::GetNTracks()<<")"<<endl;
412     };
413    
414     return track;
415    
416 pam-fi 1.1 };
417 pam-fi 1.3
418 pam-fi 1.1 //--------------------------------------
419     //
420     //
421     //--------------------------------------
422     /**
423 pam-fi 1.3 * Retrieves (if present) the image of the it-th Pamela "physical" track, sorted by the method PamLevel2::SortTracks().
424 pam-fi 1.1 * @param it Track number, ranging from 0 to GetNTracks().
425     */
426     PamTrack *PamLevel2::GetTrackImage(int it){
427    
428 pam-fi 1.5 // SortTracks("+CAL+TOF");
429     SortTracks("+CAL+TRK");//TEMP!!!!!!!!!!!!!
430 pam-fi 1.2
431 pam-fi 1.3 PamTrack *image = 0;
432 pam-fi 1.1
433 pam-fi 1.3 if( it >=0 && it < TrkLevel2::GetNTracks() ){
434 pam-fi 1.2 TrkTrack *temp = (TrkTrack*)sorted_tracks->At(it);
435     if( temp->HasImage() ){
436 pam-fi 1.3 TrkTrack *t = TrkLevel2::GetStoredTrack(temp->GetImageSeqNo());
437     image = GetPamTrackAlong(t);
438 pam-fi 1.2 }else{
439     cout <<"PamLevel2::GetTrackImage(int) : Track SeqNo "<<it<<" does not have image"<<endl;
440     };
441     }else{
442     cout << "PamLevel2::GetTrackImage(int) : Tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<<TrkLevel2::GetNTracks()<<")"<<endl;
443 pam-fi 1.1 };
444    
445 pam-fi 1.2 return image;
446 pam-fi 1.1 }
447    
448     //--------------------------------------
449     //
450     //
451     //--------------------------------------
452     /**
453 pam-fi 1.2 * Get the Pamela detector trees in a single file and make them friends.
454     * @param f TFile pointer
455     * @param detlist String to select trees to be included
456     * @return Pointer to a TTree
457 pam-fi 1.1 */
458 pam-fi 1.4 TTree *PamLevel2::GetPamTree(TFile *f, TString detlist="+ALL"){
459    
460 pam-fi 1.5 // cout << "WARNING!!! -- obsolete method -- \n";
461     // cout << "better use TChain *PamLevel2::GetPamTree(TList*, TString) \n";
462 pam-fi 1.4
463 pam-fi 1.6 TTree *Trout =0;
464    
465     SetWhichTrees(detlist);
466 pam-fi 1.4 // Tracker
467 pam-fi 1.1 TTree *T = (TTree*)f->Get("Tracker");
468 pam-fi 1.2 if(T && TRK) {
469 pam-fi 1.6 if(TRK_L1){
470     T->SetBranchAddress("TrkLevel1", GetPointerToTrk(1));
471     cout << "Tracker : set branch address TrkLevel1"<<endl;
472     };
473     T->SetBranchAddress("TrkLevel2", GetPointerToTrk(2));
474     cout << "Tracker : set branch address TrkLevel2"<<endl;
475     Trout=T;
476 pam-fi 1.1 }else{
477     cout << "Tracker : missing tree"<<endl;
478     };
479     // Calorimeter
480     TTree *C = (TTree*)f->Get("Calorimeter");
481 pam-fi 1.2 if(C && CAL) {
482 pam-fi 1.1 C->SetBranchAddress("CaloLevel2", GetPointerToCalo());
483     cout << "Calorimeter : set branch address CaloLevel2"<<endl;
484 pam-fi 1.4 if(!Trout)Trout=C;
485     else Trout->AddFriend(C);
486 pam-fi 1.1 }else{
487     cout << "Calorimeter : missing tree"<<endl;
488     };
489     // ToF
490     TTree *O = (TTree*)f->Get("ToF");
491 pam-fi 1.2 if(O && TOF) {
492 pam-fi 1.1 O->SetBranchAddress("ToFLevel2", GetPointerToToF());
493     cout << "ToF : set branch address ToFLevel2"<<endl;
494 pam-fi 1.4 if(!Trout)Trout=O;
495     else Trout->AddFriend(O);
496 pam-fi 1.1 }else{
497     cout << "ToF : missing tree"<<endl;
498     };
499     // Trigger
500     TTree *R = (TTree*)f->Get("Trigger");
501 pam-fi 1.2 if(R && TRG) {
502 pam-fi 1.1 R->SetBranchAddress("TrigLevel2", GetPointerToTrig());
503     cout << "Trigger : set branch address TrigLevel2"<<endl;
504 pam-fi 1.4 if(!Trout)Trout=O;
505     else Trout->AddFriend(R);
506 pam-fi 1.1 }else{
507     cout << "Trigger : missing tree"<<endl;
508     };
509     // S4
510     TTree *S = (TTree*)f->Get("S4");
511 pam-fi 1.2 if(S && S4) {
512 pam-fi 1.1 S->SetBranchAddress("S4Level2", GetPointerToS4());
513     cout << "S4 : set branch address S4Level2"<<endl;
514 pam-fi 1.4 if(!Trout)Trout=O;
515     else Trout->AddFriend(S);
516 pam-fi 1.1 }else{
517     cout << "S4 : missing tree"<<endl;
518     };
519     // Neutron Detector
520     TTree *N = (TTree*)f->Get("NeutronD");
521 pam-fi 1.2 if(N && ND) {
522 pam-fi 1.1 N->SetBranchAddress("NDLevel2", GetPointerToND());
523     cout << "NeutronD : set branch address NDLevel2"<<endl;
524 pam-fi 1.4 if(!Trout)Trout=O;
525     else Trout->AddFriend(N);
526 pam-fi 1.1 }else{
527     cout << "NeutronD : missing tree"<<endl;
528     };
529     // Anticounters
530     TTree *A = (TTree*)f->Get("Anticounter");
531 pam-fi 1.2 if(A && AC) {
532 pam-fi 1.1 A->SetBranchAddress("AcLevel2", GetPointerToAc());
533     cout << "Anticounter : set branch address AcLevel2"<<endl;
534 pam-fi 1.4 if(!Trout)Trout=O;
535     else Trout->AddFriend(A);
536 pam-fi 1.1 }else{
537     cout << "Anticounter : missing tree"<<endl;
538     };
539 pam-fi 1.2 // Orbital Info
540     TTree *B = (TTree*)f->Get("OrbitalInfo");
541     if(B && ORB) {
542     B->SetBranchAddress("OrbitalInfo", GetPointerToOrb());
543     cout << "OrbitalInfo : set branch address OrbitalInfo"<<endl;
544 pam-fi 1.4 if(!Trout)Trout=O;
545     else Trout->AddFriend(B);
546 pam-fi 1.2 }else{
547     cout << "OrbitalInfo : missing tree"<<endl;
548     };
549 pam-fi 1.1
550 pam-fi 1.5 cout<<endl<<" Number of entries: "<<Trout->GetEntries()<<endl<<endl;
551    
552     return Trout;
553 pam-fi 1.1
554     }
555 pam-fi 1.2 //--------------------------------------
556     //
557     //
558     //--------------------------------------
559     /**
560     * Get list of Level2 files.
561     * @param ddir Level2 data directory.
562     * @param flisttxt Name of txt file containing file list.
563     * @return Pointer to a TList of TSystemFiles
564     * If no input file list is given , all the Level2 files inside the directory are processed.
565     */
566     TList* PamLevel2::GetListOfLevel2Files(TString ddir, TString flisttxt = ""){
567    
568 pam-fi 1.6 TString wdir = gSystem->WorkingDirectory();
569    
570     if(ddir=="")ddir = wdir;
571     // TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir);
572     cout << "Level2 data directory : "<< ddir << endl;
573    
574     TList *contents = new TList; // create output list
575     contents->SetOwner();
576    
577     char *fullpath;
578    
579     // if no input file list is given:
580     if ( flisttxt != "" ){
581 pam-fi 1.2
582 pam-fi 1.6 if( !gSystem->IsFileInIncludePath(flisttxt,&fullpath) )return 0;
583 pam-fi 1.4
584     // flisttxt = gSystem->ConcatFileName(gSystem->DirName(flisttxt),gSystem->BaseName(flisttxt));
585 pam-fi 1.6 flisttxt = fullpath;
586    
587     if( !gSystem->ChangeDirectory(ddir) )return 0;
588 pam-fi 1.2
589 pam-fi 1.6 cout <<"Input file list : " << flisttxt <<endl;
590     ifstream in;
591     in.open(flisttxt, ios::in); //open input file list
592     while (1) {
593     TString file;
594     in >> file;
595     if (!in.good()) break;
596     if( gSystem->IsFileInIncludePath(file,&fullpath) ){
597 pam-fi 1.2 // contents->Add(new TSystemDirectory(fullpath,ddir)); // add file to the list
598     // contents->Add(new TSystemFile(fullpath,ddir)); // add file to the list
599 pam-fi 1.6 contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));// add file to the list
600     }else{
601     cout << "warning! --- File "<<file<<" does not exists"<< endl;
602     };
603     };
604     in.close();
605    
606     }else{
607 pam-fi 1.2
608 pam-fi 1.6 cout << "No input file list given."<<endl;
609     cout << "Check for existing root files."<<endl;
610 pam-fi 1.2 // cout << "Warking directory: "<< gSystem->WorkingDirectory()<< endl;
611 pam-fi 1.6
612     TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir);
613     TList *temp = datadir->GetListOfFiles();
614 pam-fi 1.2 // temp->Print();
615     // cout << "*************************************" << endl;
616    
617 pam-fi 1.6 TIter next(temp);
618     TSystemFile *questo = 0;
619    
620    
621     while ( (questo = (TSystemFile*) next()) ) {
622     TString name = questo-> GetName();
623     if( name.EndsWith(".root") ){
624     char *fullpath;
625     gSystem->IsFileInIncludePath(name,&fullpath);
626     contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));
627     };
628     }
629     delete temp;
630     delete datadir;
631    
632     };
633     gSystem->ChangeDirectory(wdir); // back to the working directory
634 pam-fi 1.5 // cout << endl << "Selected files:" << endl;
635     // contents->Print();
636 pam-fi 1.6 cout << contents->GetEntries()<<" files selected\n";
637 pam-fi 1.5 // cout << endl;
638 pam-fi 1.4 // cout << "Working directory: "<< gSystem->WorkingDirectory()<< endl;
639 pam-fi 1.6 return contents;
640 pam-fi 1.2 };
641     //--------------------------------------
642     //
643     //
644     //--------------------------------------
645     /**
646     * Get the Pamela detector chains from a list of files and make them friends.
647     * @param fl Pointer to a TList of TSystemFiles
648     * @param detlist String to select trees to be included
649     * @return Pointer to a TChain
650     */
651 pam-fi 1.4 TChain *PamLevel2::GetPamTree(TList *fl, TString detlist="+ALL"){
652 pam-fi 1.2
653 pam-fi 1.4 // TChain *Tout=0;
654 pam-fi 1.6 if(Tout)Tout->Delete();
655     Tout = NULL;
656    
657     SetWhichTrees(detlist);
658    
659     TChain *T = 0;
660     TChain *C = 0;
661     TChain *O = 0;
662     TChain *R = 0;
663     TChain *S = 0;
664     TChain *N = 0;
665     TChain *A = 0;
666     TChain *B = 0;
667    
668     if(TRK) T = new TChain("Tracker");
669     if(CAL) C = new TChain("Calorimeter");
670     if(TOF) O = new TChain("ToF");
671     if(TRG) R = new TChain("Trigger");
672     if(S4) S = new TChain("S4");
673     if(ND) N = new TChain("NeutronD");
674     if(AC) A = new TChain("Anticounter");
675     if(ORB) B = new TChain("OrbitalInfo");
676    
677     // loop over files and create chains
678     TIter next(fl);
679     TSystemFile *questo = 0;
680     while ( (questo = (TSystemFile*) next()) ) {
681     TString name = questo->GetName();
682 pam-fi 1.2 // cout << "File: "<< name << endl;
683 pam-fi 1.6 if( CheckLevel2File(name) ){
684     if(TRK) T->Add(name);
685     if(CAL) C->Add(name);
686     if(TOF) O->Add(name);
687     if(TRG) R->Add(name);
688     if(S4) S->Add(name);
689     if(ND) N->Add(name);
690     if(AC) A->Add(name);
691     if(ORB) B->Add(name);
692 pam-fi 1.4 };
693 pam-fi 1.6 }
694    
695     cout << "done chain \n";
696    
697     // Tracker
698     if(TRK) if(!Tout)Tout=T;
699     // Calorimeter
700     if(CAL) {
701     if(!Tout)Tout=C;
702     else Tout->AddFriend("Calorimeter");
703     };
704 pam-fi 1.4 // ToF
705 pam-fi 1.6 if(TOF) {
706     if(!Tout)Tout=O;
707     else Tout->AddFriend("ToF");
708     };
709 pam-fi 1.4 // Trigger
710 pam-fi 1.6 if(TRG) {
711     if(!Tout)Tout=O;
712     else Tout->AddFriend("Trigger");
713     };
714 pam-fi 1.4 // S4
715 pam-fi 1.6 if(S4) {
716     if(!Tout)Tout=O;
717     else Tout->AddFriend("S4");
718     };
719 pam-fi 1.4 // Neutron Detector
720 pam-fi 1.6 if(ND) {
721     if(!Tout)Tout=O;
722     else Tout->AddFriend("NeutronD");
723     };
724 pam-fi 1.4 // Anticounters
725 pam-fi 1.6 if(AC) {
726     if(!Tout)Tout=O;
727     else Tout->AddFriend("Anticounter");
728     };
729 pam-fi 1.4 // OrbitalInfo
730 pam-fi 1.6 if(ORB) {
731     if(!Tout)Tout=O;
732     else Tout->AddFriend("OrbitalInfo");
733     };
734    
735     // cout<<endl<<" Number of entries: "<<Tout->GetEntries()<<endl<<endl;
736    
737     if( Tout->GetEntries() )PamLevel2::SetBranchAddress();
738    
739     return Tout;
740 pam-fi 1.4 }
741     //--------------------------------------
742     //
743     //
744     //--------------------------------------
745     /**
746     * Set branch addresses for Pamela friend trees
747     */
748     void PamLevel2::SetBranchAddress(){
749     // Tracker
750 pam-fi 1.6 if(TRK) {
751     if(TRK_L1){
752     Tout->SetBranchAddress("TrkLevel1", GetPointerToTrk(1));
753     cout << "Tracker : set branch address TrkLevel1"<<endl;
754 pam-fi 1.4 };
755 pam-fi 1.6 Tout->SetBranchAddress("TrkLevel2", GetPointerToTrk(2));
756     cout << "Tracker : set branch address TrkLevel2"<<endl;
757     };
758    
759     // Calorimeter
760     if(CAL) {
761     Tout->SetBranchAddress("CaloLevel2", GetPointerToCalo());
762     cout << "Calorimeter : set branch address CaloLevel2"<<endl;
763     };
764    
765 pam-fi 1.4 // ToF
766 pam-fi 1.6 if(TOF) {
767     Tout->SetBranchAddress("ToFLevel2", GetPointerToToF());
768     cout << "ToF : set branch address ToFLevel2"<<endl;
769     };
770 pam-fi 1.4 // Trigger
771 pam-fi 1.6 if(TRG) {
772     Tout->SetBranchAddress("TrigLevel2", GetPointerToTrig());
773     cout << "Trigger : set branch address TrigLevel2"<<endl;
774     };
775 pam-fi 1.4 // S4
776 pam-fi 1.6 if(S4) {
777     Tout->SetBranchAddress("S4Level2", GetPointerToS4());
778     cout << "S4 : set branch address S4Level2"<<endl;
779     };
780 pam-fi 1.4 // Neutron Detector
781 pam-fi 1.6 if(ND) {
782     Tout->SetBranchAddress("NDLevel2", GetPointerToND());
783     cout << "NeutronD : set branch address NDLevel2"<<endl;
784     };
785 pam-fi 1.4 // Anticounters
786 pam-fi 1.6 if(AC) {
787     Tout->SetBranchAddress("AcLevel2", GetPointerToAc());
788     cout << "Anticounter : set branch address AcLevel2"<<endl;
789     };
790 pam-fi 1.4 // OrbitalInfo
791 pam-fi 1.6 if(ORB) {
792     Tout->SetBranchAddress("OrbitalInfo", GetPointerToOrb());
793     cout << "OrbitalInfo : set branch address OrbitalInfo"<<endl;
794     };
795    
796 pam-fi 1.4 }
797    
798     //--------------------------------------
799     //
800     //
801     //--------------------------------------
802     void *PamLevel2::GetPointerTo(const char* c ){
803     // cout << "objname "<< objname << endl;
804 pam-fi 1.6 TString objname = c;
805     if(!objname.CompareTo("TrkLevel1"))return &trk_l1_obj;
806     if(!objname.CompareTo("TrkLevel2"))return &trk_obj;
807    
808     return NULL;
809 pam-fi 1.4 };
810     //--------------------------------------
811     //
812     //
813     //--------------------------------------
814     /**
815     * Get the Run tree chain from a list of files.
816     * @param fl Pointer to a TList of TSystemFiles
817     * @return Pointer to a TChain
818     */
819     TChain *PamLevel2::GetRunTree(TList *fl){
820    
821 pam-fi 1.6 TChain *R = new TChain("Run");
822    
823     // loop over files and create chains
824     TIter next(fl);
825     TSystemFile *questo = 0;
826     while ( (questo = (TSystemFile*) next()) ) {
827     TString name = questo->GetName();
828 pam-fi 1.4 // cout << "File: "<< name << endl;
829 pam-fi 1.6 if( CheckLevel2File(name) ){
830     R->Add(name);
831     };
832     }
833    
834     R->SetBranchAddress("RunInfo", GetPointerToRun());
835     cout << "Run : set branch address RunInfo"<<endl;
836 pam-fi 1.4
837 pam-fi 1.6 return R;
838 pam-fi 1.4
839     }
840     //--------------------------------------
841     //
842     //
843     //--------------------------------------
844     /**
845     * Get the Run tree from a file.
846     * @param f Pointer to a TFile
847     * @return Pointer to a TTree
848     */
849     TTree *PamLevel2::GetRunTree(TFile *f){
850    
851    
852 pam-fi 1.6 TTree *R = (TTree*)f->Get("Run");
853    
854     R->SetBranchAddress("RunInfo", GetPointerToRun());
855     cout << "Run : set branch address RunInfo"<<endl;
856 pam-fi 1.4
857 pam-fi 1.6 return R;
858 pam-fi 1.2
859     }
860     //--------------------------------------
861     //
862     //
863     //--------------------------------------
864     /**
865     * Set which trees should be analysed
866     * @param detlist TString containing the sequence of trees required
867     */
868     void PamLevel2::SetWhichTrees(TString detlist){
869    
870 pam-fi 1.6 if(detlist.Contains("+ALL", TString::kIgnoreCase)){
871     CAL = true;
872     TRK = true;
873     TRK_L1 = false;
874     TRG = true;
875     TOF = true;
876     S4 = true;
877     ND = true;
878     AC = true;
879     ORB = true;
880     }else if( detlist.Contains("-ALL", TString::kIgnoreCase) ){
881     CAL = false;
882     TRK = false;
883     TRK_L1 = false;
884     TRG = false;
885     TOF = false;
886     S4 = false;
887     ND = false;
888     AC = false;
889     ORB = false;
890     };
891    
892     if( detlist.Contains("-CAL", TString::kIgnoreCase) )CAL = false;
893     else if( detlist.Contains("+CAL", TString::kIgnoreCase) )CAL = true;
894    
895     if( detlist.Contains("-TRK", TString::kIgnoreCase) )TRK = false;
896     else if( detlist.Contains("+TRK", TString::kIgnoreCase) )TRK = true;
897    
898     if( detlist.Contains("-TRK1", TString::kIgnoreCase) )TRK_L1 = false;
899     else if( detlist.Contains("+TRK1", TString::kIgnoreCase) )TRK_L1 = true;
900    
901     if( detlist.Contains("-TRG", TString::kIgnoreCase) )TRG = false;
902     else if( detlist.Contains("+TRG", TString::kIgnoreCase) )TRG = true;
903    
904     if( detlist.Contains("-TOF", TString::kIgnoreCase) )TOF = false;
905     else if( detlist.Contains("+TOF", TString::kIgnoreCase) )TOF = true;
906    
907     if( detlist.Contains("-S4", TString::kIgnoreCase) )S4 = false;
908     else if( detlist.Contains("+S4", TString::kIgnoreCase) )S4 = true;
909    
910     if( detlist.Contains("-ND", TString::kIgnoreCase) )ND = false;
911     else if( detlist.Contains("+ND", TString::kIgnoreCase) )ND = true;
912    
913     if( detlist.Contains("-AC", TString::kIgnoreCase) )AC = false;
914     else if( detlist.Contains("+AC", TString::kIgnoreCase) )AC = true;
915    
916     if( detlist.Contains("-ORB", TString::kIgnoreCase) )ORB = false;
917     else if( detlist.Contains("+ORB", TString::kIgnoreCase) )ORB = true;
918    
919 pam-fi 1.2 };
920     //--------------------------------------
921     //
922     //
923     //--------------------------------------
924     /**
925 pam-fi 1.3 * Check if a file contains selected Pamela Level2 trees.
926 pam-fi 1.2 * @param name File name
927 pam-fi 1.4 * @return true if the file is ok.
928 pam-fi 1.2 */
929     Bool_t PamLevel2::CheckLevel2File(TString name){
930    
931 pam-fi 1.7 Bool_t CAL__ok = false;
932     Bool_t TRK__ok = false;
933 pam-fi 1.6 Bool_t TRK_L1__ok = false;
934 pam-fi 1.7 Bool_t TRG__ok = false;
935     Bool_t TOF__ok = false;
936     Bool_t S4__ok = false;
937     Bool_t ND__ok = false;
938     Bool_t AC__ok = false;
939     Bool_t ORB__ok = false;
940 pam-fi 1.6
941 pam-fi 1.7 Bool_t RUN__ok = false;
942 pam-fi 1.6
943     // cout << "Checking file: "<<name<<endl;
944     TFile *f = new TFile(name.Data());
945     if( !f || f->IsZombie() ){
946     cout << "File: "<< f->GetName() <<" discarded ---- Non valid root file"<< endl; return false;
947     }
948 pam-fi 1.7 // cout << "Get list of keys: "<<f<<endl;
949 pam-fi 1.6 TList *lk = f->GetListOfKeys();
950 pam-fi 1.7 lk->Print();
951 pam-fi 1.6 TIter next(lk);
952     TKey *key =0;
953     Int_t nev =0;
954     Int_t nev_previous =0;
955     while( (key = (TKey*)next()) ){
956    
957 pam-fi 1.7 // cout << key->GetName() << endl;
958     // cout << " Get tree: " << f->Get(key->GetName())<<endl;
959     // nev_previous = nev;
960     // cout << " n.entries "<< nev <<endl;
961     // if( key->GetClassName()=="TTree" && nev_previous && nev != nev_previous ){
962     // nev = ((TTree*)f->Get(key->GetName()))->GetEntries();
963     // cout << "File: "<< f->GetName() <<" discarded ---- "<< key->GetName() << " tree: n.entries does not match "<<nev<<" "<<nev_previous<< endl;
964     // return false;
965     // };
966 pam-fi 1.6
967     if( !strcmp(key->GetName(),"Calorimeter") )CAL__ok = true;
968     if( !strcmp(key->GetName(),"Trigger" ) )TRG__ok = true;
969     if( !strcmp(key->GetName(),"ToF" ) )TOF__ok = true;
970     if( !strcmp(key->GetName(),"S4" ) )S4__ok = true;
971     if( !strcmp(key->GetName(),"NeutronD" ) )ND__ok = true;
972     if( !strcmp(key->GetName(),"Anticounter") )AC__ok = true;
973     if( !strcmp(key->GetName(),"OrbitalInfo") )ORB__ok = true;
974     if( !strcmp(key->GetName(),"Run" ) )RUN__ok = true;
975     if( !strcmp(key->GetName(),"Tracker" ) ){
976     TRK__ok = true;
977     TTree *T = (TTree*)f->Get("Tracker");
978     for(Int_t i=0; i<T->GetListOfBranches()->GetEntries(); i++){
979     TString name = T->GetListOfBranches()->At(i)->GetName();
980     if( !name.CompareTo("TrkLevel1") )TRK_L1__ok=true;
981     };
982 pam-fi 1.2 };
983    
984 pam-fi 1.6 };
985    
986     lk->Delete();
987     f->Close();
988    
989     Bool_t FLAG = true;
990     if(!RUN__ok) {
991     cout << "File: "<< f->GetName() <<" discarded ---- Missing RunInfo tree"<< endl; return false;
992     // FLAG = false;
993     };
994     if(CAL && !CAL__ok){
995     cout << "File: "<< f->GetName() <<" discarded ---- Missing Calorimeter tree"<< endl; return false;
996     // FLAG = false;
997     };
998     if(TRK && !TRK__ok){
999     cout << "File: "<< f->GetName() <<" discarded ---- Missing Tracker tree"<< endl; return false;
1000     // FLAG = false;
1001     };
1002     if(TRK_L1 && !TRK_L1__ok){
1003     cout << "File: "<< f->GetName() <<" discarded ---- Missing Tracker Level1 Branch"<< endl; return false;
1004     // FLAG = false;
1005     };
1006     if(TRG && !TRG__ok){
1007     cout << "File: "<< f->GetName() <<" discarded ---- Missing Trigger tree"<< endl; return false;
1008     // FLAG = false;
1009     };
1010     if(TOF && !TOF__ok){
1011     cout << "File: "<< f->GetName() <<" discarded ---- Missing ToF tree"<< endl; return false;
1012     // FLAG = false;
1013     };
1014     if(S4 && !S4__ok){
1015     cout << "File: "<< f->GetName() <<" discarded ---- Missing S4 tree"<< endl; return false;
1016     // FLAG = false;
1017     };
1018     if(ND && !ND__ok){
1019     cout << "File: "<< f->GetName() <<" discarded ---- Missing ND tree"<< endl; return false;
1020     // FLAG = false;
1021     };
1022     if(AC && !AC__ok){
1023     cout << "File: "<< f->GetName() <<" discarded ---- Missing AC tree"<< endl; return false;
1024     // FLAG = false;
1025     };
1026     if(ORB && !ORB__ok){
1027     cout << "File: "<< f->GetName() <<" discarded ---- Missing ORB tree"<< endl; return false;
1028     // FLAG = false;
1029     };
1030    
1031     return FLAG;
1032 pam-fi 1.2
1033     };
1034    
1035    

  ViewVC Help
Powered by ViewVC 1.1.23