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

Diff of /PamelaLevel2/src/PamLevel2.cpp

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

revision 1.39 by pam-fi, Mon May 14 11:57:36 2007 UTC revision 1.48 by mocchiut, Wed Sep 12 09:51:57 2007 UTC
# Line 11  PamTrack::PamTrack(){ Line 11  PamTrack::PamTrack(){
11      calo_track = 0;      calo_track = 0;
12      tof_track  = 0;      tof_track  = 0;
13      candeleteobj = 0;      candeleteobj = 0;
14        pscore = 0;
15        iscore = 0;
16  };  };
17  //--------------------------------------  //--------------------------------------
18  //  //
# Line 60  void PamTrack::Clear(){ Line 62  void PamTrack::Clear(){
62          calo_track = 0;          calo_track = 0;
63          tof_track  = 0;          tof_track  = 0;
64      }      }
65        pscore = 0;
66        iscore = 0;
67    
68  }  }
69  void PamTrack::Delete(){  void PamTrack::Delete(){
70  //    cout << "PamTrack::Delete() "<<candeleteobj<<endl;  //    cout << "PamTrack::Delete() "<<candeleteobj<<endl;
# Line 112  PamLevel2::PamLevel2(TString ddir,TStrin Line 117  PamLevel2::PamLevel2(TString ddir,TStrin
117    
118  void PamLevel2::Initialize(){  void PamLevel2::Initialize(){
119                    
 //     trk2_obj  = TrkLevel2::GetTrkLevel2();  
 //     trk1_obj  = TrkLevel1::GetTrkLevel1();  
 //     trkh_obj  = TrkHough::GetTrkHough();  
 //     calo1_obj = CaloLevel1::GetCaloLevel1();  
 //     calo2_obj = CaloLevel2::GetCaloLevel2();  
 //     tof_obj   = ToFLevel2::GetToFLevel2();  
 //     trig_obj  = TrigLevel2::GetTrigLevel2();  
 //     s4_obj    = S4Level2::GetS4Level2();  
 //     nd_obj    = NDLevel2::GetNDLevel2();  
 //     ac_obj    = AcLevel2::GetAcLevel2();  
 //     orb_obj   = OrbitalInfo::GetOrbitalInfo();  
       
120      h0_obj    = 0;      h0_obj    = 0;
121      trk0_obj  = 0;      trk0_obj  = 0;
122      calo0_obj  = 0;      calo0_obj  = 0;
# Line 162  void PamLevel2::Initialize(){ Line 155  void PamLevel2::Initialize(){
155      pam_tree = NULL;      pam_tree = NULL;
156      for(Int_t i=0; i<NCLONES; i++ )pam_tree_clone[i]=NULL;      for(Int_t i=0; i<NCLONES; i++ )pam_tree_clone[i]=NULL;
157    
158        totdltime[0] = 0LL;
159        totdltime[1] = 0LL;
160    
161      host = "mysql://localhost/pamelaprod";      host = "mysql://localhost/pamelaprod";
162      user = "anonymous";      user = "anonymous";
163      psw = "";      psw = "";
# Line 198  void PamLevel2::Initialize(){ Line 194  void PamLevel2::Initialize(){
194    
195      SELLI = -1;      SELLI = -1;
196    
197        ISGP = false;
198    
199      tsorted=0;      tsorted=0;
200      timage=0;      timage=0;
201            
# Line 304  void PamLevel2::Clear(){ Line 302  void PamLevel2::Clear(){
302    
303      if(h0_obj)   h0_obj->Clear();            if(h0_obj)   h0_obj->Clear();      
304  //    if(trk0_obj) trk0_obj->Clear();    //    if(trk0_obj) trk0_obj->Clear();  
     if(calo0_obj) calo0_obj->Clear();    
305      if(trk1_obj) trk1_obj->Clear();          if(trk1_obj) trk1_obj->Clear();    
306      if(trk2_obj) trk2_obj->Clear();      if(trk2_obj) trk2_obj->Clear();
307      if(trkh_obj) trkh_obj->Clear();      if(trkh_obj) trkh_obj->Clear();
308        if(calo0_obj) calo0_obj->Clear();  
309      if(calo1_obj)calo1_obj->Clear();      if(calo1_obj)calo1_obj->Clear();
310      if(calo2_obj)calo2_obj->Clear();      if(calo2_obj)calo2_obj->Clear();
311      if(tof_obj)  tof_obj->Clear();      if(tof_obj)  tof_obj->Clear();
# Line 401  void PamLevel2::Reset(){ Line 399  void PamLevel2::Reset(){
399    runfirstentry = 0ULL;    runfirstentry = 0ULL;
400    runlastentry = 0ULL;        runlastentry = 0ULL;    
401    //    //
402      totdltime[0] = 0LL;
403      totdltime[1] = 0LL;
404      //
405  };  };
406    
407  Bool_t PamLevel2::IsGood(){  Bool_t PamLevel2::IsGood(){
# Line 635  void PamLevel2::SortTracks(TString how){ Line 636  void PamLevel2::SortTracks(TString how){
636  void PamLevel2::SortTracks(){  void PamLevel2::SortTracks(){
637    TString how = howtosort;    TString how = howtosort;
638    
639    //    cout <<" PamLevel2::SortTracks(TString how) "<<endl;    //  cout <<" PamLevel2::SortTracks(TString how) "<<endl;
640    if( !trk2_obj ){    if( !trk2_obj ){
641      cout << "void PamLevel2::SortTracks():  TrkLevel2 not loaded !!!";      cout << "void PamLevel2::SortTracks():  TrkLevel2 not loaded !!!";
642      return;      return;
# Line 658  void PamLevel2::SortTracks(){ Line 659  void PamLevel2::SortTracks(){
659    TClonesArray &ttimage = *timage;    TClonesArray &ttimage = *timage;
660    
661    
662    // loop over the tracks sorted by the tracker  
663      //--------------------------------------------------
664      // retrieve sorting method
665      //--------------------------------------------------
666    Bool_t use_TRK = how.Contains("TRK", TString::kIgnoreCase);    Bool_t use_TRK = how.Contains("TRK", TString::kIgnoreCase);
667    Bool_t use_CAL = how.Contains("CAL", TString::kIgnoreCase);    Bool_t use_CAL = how.Contains("CAL", TString::kIgnoreCase);
668    Bool_t use_TOF = how.Contains("TOF", TString::kIgnoreCase);    Bool_t use_TOF = how.Contains("TOF", TString::kIgnoreCase);
669          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    if( !CAL2 &&  use_CAL) use_CAL = false;    if( !CAL2 &&  use_CAL) use_CAL = false;
679    if( !TOF &&  use_TOF) use_TOF = false;    if( !TOF ){
680            use_TOF = false;
681        use_S1  = false;
682        use_S2  = false;
683        use_S3  = false;
684      }
685    
686    if( !TRK2 ){    if( !TRK2 ){
687      //  cout << "SortTracks() : without tracker does not work!!! (not yet)" << endl;      //  cout << "SortTracks() : without tracker does not work!!! (not yet)" << endl;
688      return;      return;
689    };    };
690    
691    //   cout << "use_CAL "<<use_CAL<<" use_TOF "<<use_TOF<<" use_TRK "<<use_TRK <<endl;    //   cout << "use_CAL "<<use_CAL<<" use_TOF "<<use_TOF<<" use_TRK "<<use_TRK <<endl;
692          
693    
694      //--------------------------------------------------
695      // loop over "physical" tracks sorted by the tracker
696      //--------------------------------------------------
697    for(Int_t i=0; i < trk2_obj->TrkLevel2::GetNTracks(); i++){    for(Int_t i=0; i < trk2_obj->TrkLevel2::GetNTracks(); i++){
698                    
699      TrkTrack   *ts = 0;      TrkTrack   *ts = 0;
# Line 680  void PamLevel2::SortTracks(){ Line 701  void PamLevel2::SortTracks(){
701      ToFTrkVar  *os = 0;      ToFTrkVar  *os = 0;
702                    
703      // get tracker tracks      // get tracker tracks
704      TrkTrack   *tp = trk2_obj->TrkLevel2::GetTrack(i);                    //tracker      TrkTrack   *tp = trk2_obj->TrkLevel2::GetTrack(i); //tracker
705      CaloTrkVar *cp = GetCaloStoredTrack(tp->GetSeqNo());      CaloTrkVar *cp = GetCaloStoredTrack(tp->GetSeqNo());
706      ToFTrkVar  *op = GetToFStoredTrack(tp->GetSeqNo());      ToFTrkVar  *op = GetToFStoredTrack(tp->GetSeqNo());
707    
708      TrkTrack   *ti = 0;              //tracker (image)      TrkTrack   *ti = 0; //tracker (image)
709      CaloTrkVar *ci = 0;      CaloTrkVar *ci = 0;
710      ToFTrkVar  *oi = 0;      ToFTrkVar  *oi = 0;
711      //  cout << "trk track n. "<<i << " "<<hex<< tp <<dec<< endl;      //  cout << "trk track n. "<<i << " "<<hex<< tp <<dec<< endl;
712      // if track has an image, check image selection      // if track has an image, check image selection
713    
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      if(tp->HasImage()){      if(tp->HasImage()){
720                            
721        ti = trk2_obj->TrkLevel2::GetTrackImage(i);              //tracker (image)        ti = trk2_obj->TrkLevel2::GetTrackImage(i);              //tracker (image)
# Line 698  void PamLevel2::SortTracks(){ Line 725  void PamLevel2::SortTracks(){
725        //            cout << "its image "<<i << " "<<hex<< ti <<dec<< endl;        //            cout << "its image "<<i << " "<<hex<< ti <<dec<< endl;
726    
727        //assign starting scores        //assign starting scores
728        Int_t tp_score = 0;  //main track sorted by the tracker        tp_score = 0;  //main track sorted by the tracker
729        Int_t ti_score = 0;  //image track        ti_score = 0;  //image track
730                            
731        // ------------------------        // -----------------------------------------------------------------------------------------
732        // calorimeter check        // calorimeter check
733        // ------------------------        // -----------------------------------------------------------------------------------------
734        // check the Y spatial residual on the first calorimeter plane        // check the Y spatial residual on the first calorimeter plane
735        // (cut on calorimeter variables from Emiliano)        // (cut on calorimeter variables from Emiliano)
736        if( use_CAL && !calo2_obj ){        if( use_CAL && !calo2_obj ){
737          cout << "void PamLevel2::SortTracks(): howtosort= "<<how<<" but CaloLevel2 not loaded !!!";          cout << "void PamLevel2::SortTracks(): howtosort= "<<how<<" but CaloLevel2 not loaded !!!";
738          return;          return;
739        };        };
740          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        if(        if(
749           use_CAL            &&           use_CAL            &&
750           calo2_obj->npcfit[1] > 5     &&   //no. of fit planes on Y view  //       calo2_obj->npcfit[1] > 5     &&   //no. of fit planes on Y view
751           calo2_obj->varcfit[1] < 1000. &&  //fit variance on Y view  //       calo2_obj->varcfit[1] < 1000. &&  //fit variance on Y view
752           cp && ci &&           cp && ci &&
753           true){           true){
754    
755                                    
756          Float_t resy_p = cp->tbar[0][1] - calo2_obj->cbar[0][1]; if(resy_p < 0)resy_p= - resy_p;  //      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;  //      Float_t resy_i = ci->tbar[0][1] - calo2_obj->cbar[0][1]; if(resy_i < 0)resy_i= - resy_i;
758                                    
759          if(resy_p <= resy_i) tp_score++;  //      if(resy_p <= resy_i) tp_score++;
760          else                 ti_score++;  //      else                 ti_score++;
761                    
762    
763            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    
772          //      cout << "CALO "<<tp_score<<ti_score<<endl;          //      cout << "CALO "<<tp_score<<ti_score<<endl;
773    
774        };        };
775        // ------------------------        // -----------------------------------------------------------------------------------------
776        // TOF check        // TOF check
777        // ------------------------                  // -----------------------------------------------------------------------------------------
778        // check the number of hit pmts along the track        // check the number of hit pmts along the track
779        // on S12 S21 and S32, where paddles are parallel to Y axis        // on S12 S21 and S32, where paddles are parallel to Y axis
780        if( use_TOF && !tof_obj ){        if( (use_TOF || use_S1 || use_S2 || use_S3 ) && !tof_obj ){
781          cout << "void PamLevel2::SortTracks(): howtosort= "<<how<<" but ToFLevel2 not loaded !!!";          cout << "void PamLevel2::SortTracks(): howtosort= "<<how<<" but ToFLevel2 not loaded !!!";
782          return;          return;
783        };        };
784        if( use_TOF && op && oi ){        //
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          //          //
795          Float_t sen = 0.;          Float_t sen = 0.;
796          for (Int_t ih=0; ih < op->npmtadc; ih++){          for (Int_t ih=0; ih < op->npmtadc; ih++){
# Line 749  void PamLevel2::SortTracks(){ Line 802  void PamLevel2::SortTracks(){
802            if ( pl == 2 || pl == 3 || pl == 4 || pl == 5 ) sen += (oi->dedx).At(ih);            if ( pl == 2 || pl == 3 || pl == 4 || pl == 5 ) sen += (oi->dedx).At(ih);
803          };          };
804          //          //
805          if (  sen >= sortthr ){          if (  sen >= sortthr && false){ // temporary disabled NUCLEI special algorithm since the new one should work for every particle (to be checked!)
806            //printf(" IS A NUCLEUS! en = %f \n",sen);            //printf(" IS A NUCLEUS! en = %f \n",sen);
807            //            //
808            // is a nucleus use a different algorithm            // is a nucleus use a different algorithm
# Line 842  void PamLevel2::SortTracks(){ Line 895  void PamLevel2::SortTracks(){
895    
896                                    
897            if(            if(
898               use_TOF            &&               (use_TOF || use_S1 || use_S2 || use_S3)            &&
899               (nphit_p+nphit_i) !=0 &&                 (nphit_p+nphit_i) !=0 &&  
900               true){               true){
901                                            
# Line 875  void PamLevel2::SortTracks(){ Line 928  void PamLevel2::SortTracks(){
928              cout << "image: npmtadc "<< oi->npmtadc << endl;              cout << "image: npmtadc "<< oi->npmtadc << endl;
929              cout << "image: npmttdc "<< oi->npmttdc << endl;*/              cout << "image: npmttdc "<< oi->npmttdc << endl;*/
930                                    
931            for (Int_t ih=0; ih < op->npmtadc; ih++){  //        for (Int_t ih=0; ih < op->npmtadc; ih++){
932              Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) );  //          Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) );
933              if(pl == 1 || pl == 2 || pl == 5)nphit_p++;  //          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                Int_t pl = tof_obj->GetPlaneIndex( (op->pmttdc).At(ih) );
944    //          if( (op->tdcflag).At(ih)==0 && (pl == 1 || pl == 2 || pl == 5) )nphit_p++;
945                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            };            };
949                                    
950            for (Int_t ih=0; ih < oi->npmtadc; ih++){            for (Int_t ih=0; ih < oi->npmttdc; ih++){
951              Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) );              Int_t pl = tof_obj->GetPlaneIndex( (oi->pmttdc).At(ih) );
952              if(pl == 1 || pl == 2 || pl == 5)nphit_i++;  //          if( (oi->tdcflag).At(ih)==0 && (pl == 1 || pl == 2 || pl == 5) )nphit_i++;  
953                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            };            };
957                                    
958            if(            if(
              use_TOF            &&  
959               (nphit_p+nphit_i) !=0 &&                 (nphit_p+nphit_i) !=0 &&  
960               true){               true){
961                                            
962              if( nphit_p >= nphit_i) tp_score++;              if ( nphit_p != nphit_i ){
963              else ti_score++;                totp_score += nphit_p;
964                  toti_score += nphit_i;
965                  tp_score+=nphit_p;
966                  ti_score+=nphit_i;
967                };
968                //      if     ( nphit_p > nphit_i) tp_score+=nphit_p;
969                //      else if( nphit_p < nphit_i) ti_score+=nphit_i;
970                //      else ;//niente
971            };            };
972          };          };
973          //      cout << "TOF "<<tp_score<<ti_score<<endl;          //      cout << "TOF "<<tp_score<<ti_score<<endl;
974        };        };
975        if(tp_score == ti_score) use_TRK = true;  
976        // ------------------------  
977    //      if(tp_score == ti_score) use_TRK = true;
978    
979    
980          // -----------------------------------------------------------------------------------------
981        // tracker check        // tracker check
982        // ------------------------        // -----------------------------------------------------------------------------------------
983        // chi**2 difference is not always large enough to distinguish among        // chi**2 difference is not always large enough to distinguish among
984        // the real track and its image.        // the real track and its image.
985        // Tracker check will be applied always when calorimeter and tof information is ambiguous.        // Tracker check will be applied always when calorimeter and tof information is ambiguous.
986          // *** MODIFIED ON AUGUST 2007 ***
987        if(use_TRK){        if(use_TRK){
988          if(      tp->chi2 > 0 && tp->chi2 < ti->chi2 ) tp_score++ ;  //      if(      tp->chi2 > 0 && tp->chi2 < ti->chi2 ) tp_score++ ;
989          else if( ti->chi2 > 0 && ti->chi2 < tp->chi2 ) ti_score++ ;  //      else if( ti->chi2 > 0 && ti->chi2 < tp->chi2 ) ti_score++ ;
990    
991              // CHECK 1 : number of points along X  
992            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              // CHECK 2 : number of points along Y  
1001            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              // 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          //      cout << "TRK "<<tp_score<<ti_score<<endl;          //      cout << "TRK "<<tp_score<<ti_score<<endl;
1020        };        };
1021                            
1022        // ------------------------  
1023    
1024          // *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
1025        // the winner is....        // the winner is....
1026        // ------------------------                  // *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
1027        if      (tp_score > ti_score) {        if      (tp_score > ti_score) {
1028          //              ts = tp;//the track sorted by the tracker!!          
         //              cs = cp;  
         //              os = op;  
         //      cout << "It's primary!" << endl;  
1029    
1030        }else if (tp_score < ti_score) {        }else if (tp_score < ti_score) {
1031    
         //      cout << "It's image!" << endl;  
1032    
1033          ts = ti;//its image!!          ts = ti;//its image!!
1034          cs = ci;          cs = ci;
1035          os = oi;          os = oi;
1036            Int_t totis = toti_score;
1037    
1038          ti = tp;//its image!!          ti = tp;//its image!!
1039          ci = cp;          ci = cp;
# Line 934  void PamLevel2::SortTracks(){ Line 1043  void PamLevel2::SortTracks(){
1043          cp = cs;          cp = cs;
1044          op = os;          op = os;
1045    
1046            toti_score = totp_score;
1047            totp_score = totis;
1048    
1049                                    
1050        }else {        }else {
1051          //              ts = tp;  
         //              cs = cp;  
         //              os = op;  
1052  //      cout << "Warning - track image ambiguity not solved" << endl;  //      cout << "Warning - track image ambiguity not solved" << endl;
1053          //                              cout << ts->GetNtot() << " "<< ts->chi2 << " " << npcfit[1] << " "<< nphit_p << endl;  
1054        };        };
1055                            
1056      }else{      }else{
1057          totp_score = 1;
1058          toti_score = 0;
1059          
1060        //            ts = tp;        //            ts = tp;
1061        //            cs = cp;        //            cs = cp;
1062        //            os = op;        //            os = op;
# Line 957  void PamLevel2::SortTracks(){ Line 1070  void PamLevel2::SortTracks(){
1070      //  cout<<"o "<<tp<<endl;      //  cout<<"o "<<tp<<endl;
1071      //  cout<<"o "<<cp<<endl;      //  cout<<"o "<<cp<<endl;
1072      //  cout<<"o "<<op<<endl;      //  cout<<"o "<<op<<endl;
1073    
1074      new(ttsorted[i]) PamTrack(tp,cp,op);      new(ttsorted[i]) PamTrack(tp,cp,op);
1075      new(ttimage[i])  PamTrack(ti,ci,oi);      new(ttimage[i])  PamTrack(ti,ci,oi);
1076    
1077        ((PamTrack*)(ttsorted[i]))->SetPScore(totp_score);
1078        ((PamTrack*)(ttsorted[i]))->SetIScore(toti_score);
1079        ((PamTrack*)(ttimage[i]))->SetPScore(totp_score);
1080        ((PamTrack*)(ttimage[i]))->SetIScore(toti_score);
1081    };    };
1082    
1083    if( tsorted->GetEntries() != trk2_obj->GetNTracks() ){    if( tsorted->GetEntries() != trk2_obj->GetNTracks() ){
# Line 1875  Bool_t PamLevel2::UpdateRunInfo(TChain * Line 1994  Bool_t PamLevel2::UpdateRunInfo(TChain *
1994        //        //
1995        // the absolute time is necessary to relate the event with the run        // the absolute time is necessary to relate the event with the run
1996        //        //
1997        if( !GetOrbitalInfo() ){        if( !GetOrbitalInfo() && !ISGP){
1998            cout << "Bool_t PamLevel2::UpdateRunInfo(TChain *run, ULong64_t iev) -- ERROR -- missing OrbitalInfo "<<endl;            cout << "Bool_t PamLevel2::UpdateRunInfo(TChain *run, ULong64_t iev) -- ERROR -- missing OrbitalInfo "<<endl;
1999            return(false);            return(false);
2000        }        }
2001    
2002          ULong64_t abstime = 0;
2003          if( GetOrbitalInfo() )abstime=GetOrbitalInfo()->absTime;
2004    
2005    
2006        //        //
2007        // the first time the routine is called, set run search from the beginning        // the first time the routine is called, set run search from the beginning
2008        //        //
# Line 1889  Bool_t PamLevel2::UpdateRunInfo(TChain * Line 2012  Bool_t PamLevel2::UpdateRunInfo(TChain *
2012            runfirstentry = 0LL;            runfirstentry = 0LL;
2013            runlastentry += (Long64_t)(this->GetRunInfo()->NEVENTS);            runlastentry += (Long64_t)(this->GetRunInfo()->NEVENTS);
2014            if ( (Long64_t)(this->GetRunInfo()->NEVENTS) > 0LL ) runlastentry -= 1LL;            if ( (Long64_t)(this->GetRunInfo()->NEVENTS) > 0LL ) runlastentry -= 1LL;
2015              
2016              if( ISGP && run->GetEntries()!=1 ){
2017                  cout << "** WARNING ** simulated files are assumed to have 1 single run, not "<< run->GetEntries() << endl;
2018                  cout << "** WARNING ** run will not be updated"<<endl;
2019              }
2020    
2021        };              };      
2022        //        //
2023         if ( irun == run->GetEntries()-1LL &&        if(ISGP)abstime = GetRunInfo()->RUNHEADER_TIME; // BARBATRUCCO
2024             !(GetOrbitalInfo()->absTime >= GetRunInfo()->RUNHEADER_TIME &&        //
2025               GetOrbitalInfo()->absTime <= GetRunInfo()->RUNTRAILER_TIME)        if ( irun == run->GetEntries()-1LL &&
2026               !(abstime >= GetRunInfo()->RUNHEADER_TIME &&
2027                 abstime <= GetRunInfo()->RUNTRAILER_TIME)
2028              ){              ){
2029           irun = -1LL;           irun = -1LL;
2030           runfirstentry = 0LL;           runfirstentry = 0LL;
# Line 1904  Bool_t PamLevel2::UpdateRunInfo(TChain * Line 2035  Bool_t PamLevel2::UpdateRunInfo(TChain *
2035        //        //
2036        bool fromfirst = true;        bool fromfirst = true;
2037        //        //
2038        while ( !(GetOrbitalInfo()->absTime >= GetRunInfo()->RUNHEADER_TIME && GetOrbitalInfo()->absTime <= GetRunInfo()->RUNTRAILER_TIME) && irun < run->GetEntries()-1LL ){        while ( !(abstime >= GetRunInfo()->RUNHEADER_TIME && abstime <= GetRunInfo()->RUNTRAILER_TIME) && irun < run->GetEntries()-1LL ){
2039  //      while ( iev > (runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS-1)) && irun < run->GetEntries() ){  //      while ( iev > (runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS-1)) && irun < run->GetEntries() ){
2040            irun++;            irun++;
2041            run->GetEntry(irun);            run->GetEntry(irun);
# Line 1914  Bool_t PamLevel2::UpdateRunInfo(TChain * Line 2045  Bool_t PamLevel2::UpdateRunInfo(TChain *
2045  //        cout << " ))))) UPDATE RUN INFO (((((  @iev "<<iev<<" run "<<GetRunInfo()->ID<<" irun "<<irun<<endl;  //        cout << " ))))) UPDATE RUN INFO (((((  @iev "<<iev<<" run "<<GetRunInfo()->ID<<" irun "<<irun<<endl;
2046  //        cout << "runfirstentry "<<runfirstentry<<endl;  //        cout << "runfirstentry "<<runfirstentry<<endl;
2047            //      printf(" iev %llu %u %llu \n",iev,this->GetRunInfo()->NEVENTS,(ULong64_t)(runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS)));            //      printf(" iev %llu %u %llu \n",iev,this->GetRunInfo()->NEVENTS,(ULong64_t)(runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS)));
2048            //      printf(" abstime %u trailertime %u \n",GetOrbitalInfo()->absTime,GetRunInfo()->RUNTRAILER_TIME);            //      printf(" abstime %u trailertime %u \n",abstime,GetRunInfo()->RUNTRAILER_TIME);
2049            //      printf(" IDRUN %u \n",GetRunInfo()->ID);            //      printf(" IDRUN %u \n",GetRunInfo()->ID);
2050            //            //
2051  //        prevshift = 0;  //        prevshift = 0;
2052            //            //
2053            if ( irun == (Long64_t)(run->GetEntries()-1LL) && fromfirst && !(GetOrbitalInfo()->absTime >= GetRunInfo()->RUNHEADER_TIME && GetOrbitalInfo()->absTime <= GetRunInfo()->RUNTRAILER_TIME)){            if ( irun == (Long64_t)(run->GetEntries()-1LL) && fromfirst && !(abstime >= GetRunInfo()->RUNHEADER_TIME && abstime <= GetRunInfo()->RUNTRAILER_TIME)){
2054                printf(" resetting irun  (it should NOT happen!!!)\n");                printf(" resetting irun  (it should NOT happen!!!)\n");
2055                fromfirst = false;                fromfirst = false;
2056                irun = 0;                irun = 0;
# Line 1932  Bool_t PamLevel2::UpdateRunInfo(TChain * Line 2063  Bool_t PamLevel2::UpdateRunInfo(TChain *
2063        };        };
2064        //        //
2065        if (        if (
2066             !(GetOrbitalInfo()->absTime >= GetRunInfo()->RUNHEADER_TIME &&             !(abstime >= GetRunInfo()->RUNHEADER_TIME &&
2067               GetOrbitalInfo()->absTime <= GetRunInfo()->RUNTRAILER_TIME)               abstime <= GetRunInfo()->RUNTRAILER_TIME)
2068            ) {            ) {
2069            printf(" Something very wrong here: cannot find RUN containing absolute time %u \n",GetOrbitalInfo()->absTime);          printf(" Something very wrong here: cannot find RUN containing absolute time %llu \n",abstime);
2070            return false;            return false;
2071        }        }
2072        //        //
# Line 1987  Bool_t PamLevel2::UpdateRunInfo(Long64_t Line 2118  Bool_t PamLevel2::UpdateRunInfo(Long64_t
2118      if(SELLI==0){      if(SELLI==0){
2119    
2120          // ---------------------------------------------------------------          // ---------------------------------------------------------------
2121            // increment dead and live-time counters
2122            // ---------------------------------------------------------------
2123            if( GetTrigLevel2() ){
2124                totdltime[0]+=GetTrigLevel2()->dltime[0];
2125                totdltime[1]+=GetTrigLevel2()->dltime[1];
2126            }
2127            totdltime[2]++;
2128    
2129    //      cout << setw(10)<<totdltime[0]<<setw(10)<<totdltime[1]<<setw(10)<<totdltime[2]<<endl;
2130    
2131            // ---------------------------------------------------------------
2132            // retrieve OBT and absolute time of the event
2133            // ---------------------------------------------------------------
2134            ULong64_t abstime = 0;
2135            ULong64_t obt     = 0;
2136            if( GetOrbitalInfo() ){
2137                abstime = GetOrbitalInfo()->absTime;
2138                obt     = GetOrbitalInfo()->OBT;
2139            }
2140            // ---------------------------------------------------------------
2141          // the absolute time is necessary to relate the event with the run          // the absolute time is necessary to relate the event with the run
2142          // ---------------------------------------------------------------          // ---------------------------------------------------------------
2143          if( !GetOrbitalInfo() ){          if( !GetOrbitalInfo() && !ISGP ){
2144              cout << "Bool_t PamLevel2::UpdateRunInfo(Long64_t iev) -- ERROR -- missing OrbitalInfo "<<endl;              cout << "Bool_t PamLevel2::UpdateRunInfo(Long64_t iev) -- ERROR -- missing OrbitalInfo "<<endl;
2145              return(false);              return(false);
2146          }          }
# Line 2002  Bool_t PamLevel2::UpdateRunInfo(Long64_t Line 2153  Bool_t PamLevel2::UpdateRunInfo(Long64_t
2153              irunentry = 0;              irunentry = 0;
2154              prevshift = 0;              prevshift = 0;
2155              run_tree->GetEntry(irun);              run_tree->GetEntry(irun);
2156    
2157                if( ISGP && run_tree->GetEntries()!=1 ){
2158                    cout << "** WARNING ** simulated files are assumed to have 1 single run, not "<< run_tree->GetEntries() << endl;
2159                    cout << "** WARNING ** run will not be updated"<<endl;
2160                }
2161          };                };      
2162    
2163            // -----------------------------------------------------------------------
2164            // if it is simulation, assigh abstime by hand (temporaneo!!!)
2165            // -----------------------------------------------------------------------
2166            if(ISGP){
2167                abstime = GetRunInfo()->RUNHEADER_TIME; // BARBATRUCCO
2168                obt     = GetRunInfo()->RUNHEADER_OBT; // BARBATRUCCO
2169            }
2170          //          //
2171          bool fromfirst = true; // first loop over runs          bool fromfirst = true; // first loop over runs
2172    
# Line 2016  Bool_t PamLevel2::UpdateRunInfo(Long64_t Line 2180  Bool_t PamLevel2::UpdateRunInfo(Long64_t
2180          while (          while (
2181              (              (
2182                  (                  (
2183                      !(GetOrbitalInfo()->absTime >= GetRunInfo()->RUNHEADER_TIME &&    // check on absolute time (s)                      !(abstime >= GetRunInfo()->RUNHEADER_TIME &&    // check on absolute time (s)
2184                        GetOrbitalInfo()->absTime <= GetRunInfo()->RUNTRAILER_TIME) &&                        abstime <= GetRunInfo()->RUNTRAILER_TIME) &&
2185                      !(GetOrbitalInfo()->OBT >= GetRunInfo()->RUNHEADER_OBT &&         // additional check on OBT (ms)                      !(obt >= GetRunInfo()->RUNHEADER_OBT &&         // additional check on OBT (ms)
2186                        GetOrbitalInfo()->OBT <= GetRunInfo()->RUNTRAILER_OBT)                        obt <= GetRunInfo()->RUNTRAILER_OBT)
2187                      )                      )
2188                  || GetRunInfo()->NEVENTS==0                  || GetRunInfo()->NEVENTS==0
2189                  || !(irunentry < GetRunInfo()->NEVENTS-1-prevshift)                  || !(irunentry < GetRunInfo()->NEVENTS-1-prevshift)
2190                  )                  )
2191                  && irun < run_tree->GetEntries() ){                  && irun < run_tree->GetEntries() ){
2192    
2193    
2194    
2195    
2196                // -----------------------------------------
2197                // store dead and live-time of previous run
2198                // -----------------------------------------
2199                if(fromfirst){
2200                    if(oldrun==irun){
2201                        /// decrement counters
2202                        if( GetTrigLevel2()){
2203                            totdltime[0]-=GetTrigLevel2()->dltime[0];//live-time
2204                            totdltime[1]-=GetTrigLevel2()->dltime[1];//dead-time
2205                        }
2206                        totdltime[2]--;                              //event counter
2207                        cout << endl;
2208                        cout << "n.events     : "<<totdltime[2]<<endl;
2209                        cout << "RUN LIVE-TIME: "<<totdltime[0]*0.16<<" ms"<<endl;
2210                        cout << "RUN DEAD-TIME: "<<totdltime[1]*0.01<<" ms"<<endl;      
2211                    }else{
2212                        totdltime[0]=0;//live-time
2213                        totdltime[1]=0;//dead-time
2214                        totdltime[2]=0;                             //event counter
2215                        cout << " *** JUMP RUN *** irun "<<irun<<endl;
2216                    }
2217                    /// add an entry
2218                    if(run_tree_clone)
2219                        if(run_tree_clone->GetBranch("DeadLiveTime")->GetEntries() < run_tree->GetEntries())
2220                            run_tree_clone->GetBranch("DeadLiveTime")->Fill();
2221                    /// reset counters
2222                    if( GetTrigLevel2() ){
2223                        totdltime[0]=GetTrigLevel2()->dltime[0];//live-time
2224                        totdltime[1]=0;                         //dead-time
2225                    }
2226                    totdltime[2]=1;                             //event counter
2227                }
2228    
2229    
2230              irun++;              irun++;
2231              // ------------------------------------              // ------------------------------------
2232              // if the end of run tree is reached...              // if the end of run tree is reached...
# Line 2053  Bool_t PamLevel2::UpdateRunInfo(Long64_t Line 2254  Bool_t PamLevel2::UpdateRunInfo(Long64_t
2254              // -------------------------------------------------------------------              // -------------------------------------------------------------------
2255              if(irun>0)runfirstentry += (GetRunInfo()->NEVENTS)-prevshift;              if(irun>0)runfirstentry += (GetRunInfo()->NEVENTS)-prevshift;
2256              irunentry = 0;              irunentry = 0;
2257              prevshift = 0;              prevshift = 0;          
2258              run_tree->GetEntry(irun);                    run_tree->GetEntry(irun);      
2259              if(GetRunInfo()->RUNHEADER_OBT>GetRunInfo()->RUNTRAILER_OBT ){              if(GetRunInfo()->RUNHEADER_OBT>GetRunInfo()->RUNTRAILER_OBT ){
2260                  cout << "Bool_t PamLevel2::UpdateRunInfo(Long64_t iev) -- WARNING -- irun "<<irun<<"  has RUNHEADER_OBT>=RUNTRAILER_OBT " <<endl;                  cout << "Bool_t PamLevel2::UpdateRunInfo(Long64_t iev) -- WARNING -- irun "<<irun<<"  has RUNHEADER_OBT>=RUNTRAILER_OBT " <<endl;
# Line 2073  Bool_t PamLevel2::UpdateRunInfo(Long64_t Line 2274  Bool_t PamLevel2::UpdateRunInfo(Long64_t
2274    
2275          // --------------------------------------          // --------------------------------------
2276          // ... otherwise          // ... otherwise
2277            // --------------------------------------
2278    
2279    
2280    
2281    //      // -----------------------------------------
2282    //      // store dead and live-time of previous run
2283    //      // -----------------------------------------
2284    //      // --------------------------------------------------------------
2285    //      // if the run is empty, fill the dead-live time branch with zeros
2286    //      // --------------------------------------------------------------
2287    //      /// if some runs have been jumped, fill with zeros
2288    //      if(irun-oldrun>1){
2289    //          ULong64_t  temp[3];
2290    //          temp[0]=totdltime[0];
2291    //          temp[1]=totdltime[1];
2292    //          temp[2]=totdltime[2];
2293    //          for(int i=oldrun+1; i<irun; irun++){
2294    //              totdltime[0]=0;
2295    //              totdltime[1]=0;
2296    //              totdltime[2]=0;
2297    //              cout << " ** JUMPED RUN **"<<endl;
2298    //              if(run_tree_clone)
2299    //                  if(run_tree_clone->GetBranch("DeadLiveTime")->GetEntries() < run_tree->GetEntries())
2300    //                      run_tree_clone->GetBranch("DeadLiveTime")->Fill();
2301    //          }
2302    //          totdltime[0]=temp[0];
2303    //          totdltime[1]=temp[1];
2304    //          totdltime[2]=temp[2];
2305    //      }
2306    //      /// decrement counters
2307    //      if( GetTrigLevel2() ){
2308    //          totdltime[0]-=GetTrigLevel2()->dltime[0];//live-time
2309    //          totdltime[1]-=GetTrigLevel2()->dltime[1];//dead-time
2310    //      }
2311    //      totdltime[2]--;                              //event counter
2312    //      /// add an entry
2313    //      if(irun>0 ){
2314    //          cout << endl;
2315    //          cout << "n.events     : "<<totdltime[2]<<endl;
2316    //          cout << "RUN LIVE-TIME: "<<totdltime[0]*0.16<<" ms"<<endl;
2317    //          cout << "RUN DEAD-TIME: "<<totdltime[1]*0.01<<" ms"<<endl;      
2318    //          if(run_tree_clone)
2319    //              if(run_tree_clone->GetBranch("DeadLiveTime")->GetEntries() < run_tree->GetEntries())
2320    //                  run_tree_clone->GetBranch("DeadLiveTime")->Fill();
2321    //      }
2322    //      /// reset counters
2323    //      if( GetTrigLevel2() ){
2324    //          totdltime[0]=GetTrigLevel2()->dltime[0];//live-time
2325    //          totdltime[1]=0;                         //dead-time
2326    //      }
2327    //      totdltime[2]=1;                             //event counter
2328            
2329    
2330            // --------------------------------------
2331          // ---> exit with TRUE          // ---> exit with TRUE
2332          // --------------------------------------          // --------------------------------------
2333          cout << endl << " ))))) UPDATE RUN INFO (((((  @iev "<<iev<<" run "<<GetRunInfo()->ID<<" irun "<<irun<<endl;          cout << endl << " ))))) UPDATE RUN INFO (((((  @iev "<<iev<<" run "<<GetRunInfo()->ID<<" irun "<<irun<<endl;
# Line 2087  Bool_t PamLevel2::UpdateRunInfo(Long64_t Line 2342  Bool_t PamLevel2::UpdateRunInfo(Long64_t
2342              true ){              true ){
2343              cout << "* fragment *"<<endl;                            cout << "* fragment *"<<endl;              
2344          }          }
2345            
2346          return(true);              return(true);    
2347      };      };
2348      // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-      // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
# Line 2767  void PamLevel2::CreateCloneTrees(TFile * Line 3022  void PamLevel2::CreateCloneTrees(TFile *
3022      }      }
3023      cout << "----------------------------------------------------"<<endl;      cout << "----------------------------------------------------"<<endl;
3024    
3025        // ------------------------------------
3026        // add branch with dead and live times
3027        // ------------------------------------
3028        run_tree_clone->Branch("DeadLiveTime",totdltime,"dltime[3]/l");
3029        cout << "Run          : branch DeadLiveTime"<<endl;
3030    
3031    
3032      sel_tree_clone = new TTree("SelectionList","List of selected events ");      sel_tree_clone = new TTree("SelectionList","List of selected events ");
3033      sel_tree_clone->Branch("RunEntry",&irun,"runentry/L");      sel_tree_clone->Branch("RunEntry",&irun,"runentry/L");
# Line 2893  TTree* PamLevel2::GetCloneTree(TString n Line 3154  TTree* PamLevel2::GetCloneTree(TString n
3154  void PamLevel2::WriteCloneTrees(){  void PamLevel2::WriteCloneTrees(){
3155      cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;      cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <<endl;
3156      cout << "Write clones of PAMELA trees "<<endl;      cout << "Write clones of PAMELA trees "<<endl;
3157      cout << run_tree_clone->GetName()<<endl;          cout << run_tree_clone->GetName()<<endl;  
3158        if(run_tree_clone->GetBranch("DeadLiveTime")->GetEntries() < run_tree->GetEntries())
3159            run_tree_clone->GetBranch("DeadLiveTime")->Fill();
3160      run_tree_clone->Write();      run_tree_clone->Write();
3161      cout << sel_tree_clone->GetName()<<endl;          cout << sel_tree_clone->GetName()<<endl;    
3162      sel_tree_clone->Write();      sel_tree_clone->Write();
# Line 2964  Int_t PamLevel2::GetEntry(Long64_t iee){ Line 3227  Int_t PamLevel2::GetEntry(Long64_t iee){
3227  //     cout << "irunentry     "<<irunentry << endl;  //     cout << "irunentry     "<<irunentry << endl;
3228  //     cout << "runfirstentry "<<runfirstentry << endl;  //     cout << "runfirstentry "<<runfirstentry << endl;
3229  //     cout << "nevents       "<<GetRunInfo()->NEVENTS<< endl;  //     cout << "nevents       "<<GetRunInfo()->NEVENTS<< endl;
3230      if( TRK0 || CAL0 || TOF0 ){  
3231          if( !GetYodaEntry( ) ){  //     if( TRK0 || CAL0 || TOF0 ){
3232              cout << " Int_t PamLevel2::GetEntry(Int_t) -- ERROR -- error reading level0 tree"<<endl;  //      if( !GetYodaEntry( ) ){
3233              return 0;  //          cout << " Int_t PamLevel2::GetEntry(Int_t) -- ERROR -- error reading level0 tree"<<endl;
3234          }  //          return 0;
3235      }  //      }
3236    //     }
3237    
3238    
3239      return 1;      return 1;
3240    
3241  }  }
3242    
3243    TrkLevel0    *PamLevel2::GetTrkLevel0(){
3244        if( !TRK0 )return NULL;
3245        if( !GetYodaEntry( ) ){
3246            cout << " Int_t PamLevel2::GetTrkLevel0() -- ERROR -- error reading level0 tree"<<endl;
3247            return 0;
3248        }
3249        return trk0_obj;
3250    };
3251    CaloLevel0    *PamLevel2::GetCaloLevel0(){
3252        if( !CAL0 )return NULL;
3253        if( !GetYodaEntry( ) ){
3254            cout << " Int_t PamLevel2::GetCaloLevel0() -- ERROR -- error reading level0 tree"<<endl;
3255            return 0;
3256        }
3257        return calo0_obj;
3258    };
3259    
3260    
3261  /**  /**
3262   * Method to retrieve the level0 tree (YODA tree) that contains the current event.   * Method to retrieve the level0 tree (YODA tree) that contains the current event.
3263   * Given the run ID (...), if needed it query the DB and load the proper file.   * Given the run ID (...), if needed it query the DB and load the proper file.
# Line 3051  TTree* PamLevel2::GetYodaTree( ){ Line 3335  TTree* PamLevel2::GetYodaTree( ){
3335              };              };
3336              l0_tree->SetBranchAddress("Tracker" ,trk0_obj->GetPointerToTrackerEvent());              l0_tree->SetBranchAddress("Tracker" ,trk0_obj->GetPointerToTrackerEvent());
3337          }          }
3338          //---------------------------------------------------          //--------------------------------------------------
3339          // CALORIMETER:          // CALORIMETER:
3340          if(CAL0){          if(CAL0){
3341              if(!calo0_obj){              if(!calo0_obj){
# Line 3114  Int_t PamLevel2::GetYodaEntry(){ Line 3398  Int_t PamLevel2::GetYodaEntry(){
3398    
3399  //     cout << " irun "<< irun << " irunentry "<< irunentry<<" run_obj->EV_FROM "<<run_obj->EV_FROM <<" quella giusta "<<quellagiusta << endl;  //     cout << " irun "<< irun << " irunentry "<< irunentry<<" run_obj->EV_FROM "<<run_obj->EV_FROM <<" quella giusta "<<quellagiusta << endl;
3400  //     cout << " iroot "<<iroot<<" run_obj->ID_ROOT_L0 "<<run_obj->ID_ROOT_L0<<endl;  //     cout << " iroot "<<iroot<<" run_obj->ID_ROOT_L0 "<<run_obj->ID_ROOT_L0<<endl;
3401  //     cout << " time "<< GetOrbitalInfo()->absTime << endl;  //     cout << " time "<< abstime << endl;
3402  //     cout << " trk_calib_used "<<run_obj->TRK_CALIB_USED<< endl;  //     cout << " trk_calib_used "<<run_obj->TRK_CALIB_USED<< endl;
3403            
3404      if( !GetOrbitalInfo() ){      ULong64_t obt     = 0;
3405        ULong64_t pktn    = 0;
3406        if( GetOrbitalInfo() ){
3407            obt     = GetOrbitalInfo()->OBT;
3408            pktn    = GetOrbitalInfo()->pkt_num;
3409        }
3410    
3411        if( !GetOrbitalInfo() && !ISGP){
3412          cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- missing OrbitalInfo "<<endl;          cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- missing OrbitalInfo "<<endl;
3413          return 0;          return 0;
3414      }      }
3415      if( GetOrbitalInfo()->OBT==0 && GetOrbitalInfo()->pkt_num==0 ){      if( obt==0 && pktn==0 && !ISGP ){
3416          cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- level2 event corrupted ?? "<<endl;          cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- level2 event corrupted ?? "<<endl;
3417          return 0;          return 0;
3418      }      }
# Line 3143  Int_t PamLevel2::GetYodaEntry(){ Line 3434  Int_t PamLevel2::GetYodaEntry(){
3434      Int_t maxshift = 10;      Int_t maxshift = 10;
3435      do{      do{
3436          if(shift>0){              if(shift>0){    
3437              cout << " PKTNUM  L2 --- "<< GetOrbitalInfo()->pkt_num << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetCounter()<<endl;              cout << " PKTNUM  L2 --- "<< pktn << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetCounter()<<endl;
3438              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;              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;
3439              cout << "         L2 <--> L0 mismatch ( irun "<<irun<<" irunentry "<<irunentry<<" shift "<<shift<<" prevshift "<<prevshift<<" )"<<endl;              cout << "         L2 <--> L0 mismatch ( irun "<<irun<<" irunentry "<<irunentry<<" shift "<<shift<<" prevshift "<<prevshift<<" )"<<endl;
3440          }          }
# Line 3153  Int_t PamLevel2::GetYodaEntry(){ Line 3444  Int_t PamLevel2::GetYodaEntry(){
3444              cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- missing EventHeader "<<endl;              cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- missing EventHeader "<<endl;
3445              return 0;              return 0;
3446          }          }
3447  //      cout << "PKTNUM "<<shift<<" ==  L2 --- "<< GetOrbitalInfo()->pkt_num << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetCounter()<<endl;  
3448  //      cout << " L2 --- "<< GetOrbitalInfo()->OBT << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetOrbitalTime()<<endl;          if(ISGP){
3449                obt = (UInt_t)(GetEventHeader()->GetPscuHeader()->GetOrbitalTime()); //BARBATRUCCO
3450                pktn = (UInt_t)(GetEventHeader()->GetPscuHeader()->GetCounter()); //BARBATRUCCO
3451            }
3452    
3453    //      cout << "PKTNUM "<<shift<<" ==  L2 --- "<< pktn << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetCounter()<<endl;
3454    //      cout << " L2 --- "<< obt << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetOrbitalTime()<<endl;
3455  //      if( (quellagiusta+shift) == l0_tree->GetEntries()+1 )cout << ">>> end of level0 tree <<<"<<endl;  //      if( (quellagiusta+shift) == l0_tree->GetEntries()+1 )cout << ">>> end of level0 tree <<<"<<endl;
3456  //      cout << " GetOrbitalInfo()->OBT "<< GetOrbitalInfo()->OBT << endl;  //      cout << " obt "<< obt << endl;
3457  //      cout << " GetEventHeader()->GetPscuHeader()->GetOrbitalTime() "<< GetEventHeader()->GetPscuHeader()->GetOrbitalTime() << endl;  //      cout << " GetEventHeader()->GetPscuHeader()->GetOrbitalTime() "<< GetEventHeader()->GetPscuHeader()->GetOrbitalTime() << endl;
3458  //      cout << " GetOrbitalInfo()->pkt_num "<< GetOrbitalInfo()->pkt_num << endl;  //      cout << " pktn "<< pktn << endl;
3459  //      cout << " GetEventHeader()->GetPscuHeader()->GetCounter() "<< GetEventHeader()->GetPscuHeader()->GetCounter() << endl;  //      cout << " GetEventHeader()->GetPscuHeader()->GetCounter() "<< GetEventHeader()->GetPscuHeader()->GetCounter() << endl;
3460  //      printf(" IDRUN %u \n",GetRunInfo()->ID);  //      printf(" IDRUN %u \n",GetRunInfo()->ID);
3461  //  //
# Line 3167  Int_t PamLevel2::GetYodaEntry(){ Line 3464  Int_t PamLevel2::GetYodaEntry(){
3464            shift = -1;            shift = -1;
3465          };          };
3466    
3467      }while( ( GetOrbitalInfo()->OBT != (UInt_t)(GetEventHeader()->GetPscuHeader()->GetOrbitalTime()) || GetOrbitalInfo()->pkt_num != (UInt_t)(GetEventHeader()->GetPscuHeader()->GetCounter())) && (quellagiusta+(Long64_t)shift) < GetYodaTree()->GetEntries() && shift < maxshift);      }while( ( obt != (UInt_t)(GetEventHeader()->GetPscuHeader()->GetOrbitalTime()) ||
3468                  pktn != (UInt_t)(GetEventHeader()->GetPscuHeader()->GetCounter())       )
3469                && (quellagiusta+(Long64_t)shift) < GetYodaTree()->GetEntries() && shift < maxshift);
3470    
3471      if ( (quellagiusta+(Long64_t)shift+(Long64_t)prevshift) > GetYodaTree()->GetEntries() || shift == maxshift ) {      if ( (quellagiusta+(Long64_t)shift+(Long64_t)prevshift) > GetYodaTree()->GetEntries() || shift == maxshift ) {
3472          cout << " Big trouble here, no such event in Level0 data! " <<endl;          cout << " Big trouble here, no such event in Level0 data! " <<endl;
# Line 3180  Int_t PamLevel2::GetYodaEntry(){ Line 3479  Int_t PamLevel2::GetYodaEntry(){
3479      return answer;      return answer;
3480            
3481  }  }
3482    /**
3483     * \Brief Set DB connection
3484     */
3485    Bool_t PamLevel2::SetDBConnection(){
3486    
3487        cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
3488        cout<<"Connecting to DB"<<endl;
3489        cout<<"HOST "<<host<<endl;
3490        cout<<"USER "<<user<<endl;
3491        cout<<"PSW  "<<psw<<endl;
3492        dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data());
3493        if( !dbc )return false;
3494        if( !dbc->IsConnected() )return false;    
3495        cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
3496        return true;
3497    
3498    }
3499    
3500    /**
3501     * \Brief Add a friend to the pamela chain.
3502     * @param cname name of the chain to be added
3503     */
3504    
3505    TChain* PamLevel2::AddFriend(TString cname){
3506    
3507        if(!GetPamTree()){
3508            cout << " TChain* PamLevel2::AddFriend(TString cname) --- a pamela tree must be created first"<<endl;
3509            return NULL;
3510        }
3511    
3512    
3513        TChain *c = new TChain( cname.Data() );
3514    
3515        TIter next( GetPamTree()->GetListOfFiles() );
3516        Int_t nf = 0;
3517        TChainElement* element = 0;    
3518        while ((element = (TChainElement*) next())) {      
3519            c->Add(element->GetTitle());
3520            nf++;
3521        }
3522    
3523        GetPamTree()->AddFriend(cname.Data());
3524    
3525        cout << "external chain created and added to pamela friends :"<<cname<<endl;
3526        cout << "n.files "<<nf<<endl;
3527        
3528    
3529        return c;    
3530    
3531    }

Legend:
Removed from v.1.39  
changed lines
  Added in v.1.48

  ViewVC Help
Powered by ViewVC 1.1.23