--- PamelaLevel2/src/PamLevel2.cpp 2007/01/18 08:51:16 1.18 +++ PamelaLevel2/src/PamLevel2.cpp 2007/03/28 15:29:14 1.37 @@ -85,9 +85,32 @@ // //-------------------------------------- /** - * Constructor + * Default Constructor */ PamLevel2::PamLevel2(){ + Initialize(); +}; + +/** + * Constructor with given dir, list and detectors + */ +PamLevel2::PamLevel2(TString ddir,TString list,TString detlist){ + Initialize(); + GetPamTree(GetListOfLevel2Files(ddir,list),detlist); + GetRunTree(GetListOfLevel2Files(ddir,list)); +}; + +/** + * Constructor with given dir and list + */ +PamLevel2::PamLevel2(TString ddir,TString list){ + Initialize(); + GetPamTree(GetListOfLevel2Files(ddir,list),""); + GetRunTree(GetListOfLevel2Files(ddir,list)); +}; + + +void PamLevel2::Initialize(){ // trk2_obj = TrkLevel2::GetTrkLevel2(); // trk1_obj = TrkLevel1::GetTrkLevel1(); @@ -100,6 +123,11 @@ // nd_obj = NDLevel2::GetNDLevel2(); // ac_obj = AcLevel2::GetAcLevel2(); // orb_obj = OrbitalInfo::GetOrbitalInfo(); + + h0_obj = 0; + trk0_obj = 0; + calo0_obj = 0; + trk2_obj = 0; trk1_obj = 0; trkh_obj = 0; @@ -114,30 +142,68 @@ run_obj = 0;//new GL_RUN(); soft_obj = 0;// Emiliano - irun = -1; - runfirstentry = 0ULL; - runlastentry = 0ULL; + irun = -1LL; + runfirstentry = 0LL; + runlastentry = 0LL; + + l0_file = NULL; + l0_tree = NULL; + iroot = -1; + dbc = 0; + + prevshift = 0; + + run_tree = NULL; + run_tree_clone = NULL; + sel_tree = NULL; + sel_tree_clone = NULL; + + irunentry = -1LL; + pam_tree = NULL; + for(Int_t i=0; iGetenv("PAM_DBHOST"); + const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); + const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); + if ( !pamdbhost ) pamdbhost = ""; + if ( !pamdbuser ) pamdbuser = ""; + if ( !pamdbpsw ) pamdbpsw = ""; + if ( strcmp(pamdbhost,"") ) host = pamdbhost; + if ( strcmp(pamdbuser,"") ) user = pamdbuser; + if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; - for(Int_t i=0; i<8; i++ )tree_clone[i]=NULL; + // sorted_tracks = 0;//new TRefArray(); + CAL0 = false; CAL1 = true; CAL2 = true; TRK2 = true; TRK1 = false; TRKh = false; - TRG = true; - TOF = true; - S4 = true; - ND = true; - AC = true; - ORB = true; + TRKh = false; + TRG = true; + TOF = true; + TOF0 = false; + S4 = true; + ND = true; + AC = true; + ORB = true; - RUN = true; + RUN = true; + + SELLI = -1; tsorted=0; timage=0; + + howtosort = "+CAL+TOF"; + //howtosort = "+TOF"; + sortthr = 100.; }; /** @@ -149,6 +215,9 @@ if(soft_obj)delete soft_obj; //Emiliano // cout << "void PamLevel2::Clear()"<Delete(); delete timage; } + + if(dbc){ + dbc->Close(); + delete dbc; + } + + if(l0_file)l0_file->Close(); + // if(pam_tree)pam_tree->Delete();; + + if ( pam_tree ){ + // + // 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... + // + TList *temp = pam_tree->GetListOfFriends(); + TList *contents = new TList; // create chain friend list + contents->SetOwner(); + TIter next(temp); + TChain *questo = 0; + while ( (questo = (TChain*) next()) ){ + TString name = questo->GetName(); + contents->Add((TChain*)gROOT->FindObject(name.Data()));// add object to the list + }; + // + // deleting the main chain + // + pam_tree->Delete(); + // + // deleting the friends... + // + TIter next2(contents); + TChain *questa = 0; + while ( questa = (TChain*)next2() ){ + TString name = questa->GetName(); + questa->Delete(); + questa=NULL; + }; + // + }; + pam_tree = NULL; + + if(run_tree)run_tree->Delete();; + if(sel_tree)sel_tree->Delete();; + for(Int_t i=0; iDelete();; + if(run_tree_clone)run_tree_clone->Delete();; + if(sel_tree_clone)sel_tree_clone->Delete();; + + }; /** @@ -186,8 +302,11 @@ // if(run_obj) run_obj->Clear(); // Emiliano: Do not deallocate run_obj here, it will give segmentation fault! call clear instead // if(soft_obj) soft_obj->Clear(); + if(h0_obj) h0_obj->Clear(); +// if(trk0_obj) trk0_obj->Clear(); + if(calo0_obj) calo0_obj->Clear(); if(trk1_obj) trk1_obj->Clear(); - if(trk2_obj) trk2_obj->Clear(); + if(trk2_obj) trk2_obj->Clear(); if(trkh_obj) trkh_obj->Clear(); if(calo1_obj)calo1_obj->Clear(); if(calo2_obj)calo2_obj->Clear(); @@ -207,7 +326,81 @@ if(timage){ timage->Delete(); } - +}; + +void PamLevel2::Reset(){ + // + // First of all clear everything + // + Clear(); + // + // close and reset chains and pointers + // + if ( pam_tree ){ + // + // 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... + // + TList *temp = pam_tree->GetListOfFriends(); + TList *contents = new TList; // create chain friend list + contents->SetOwner(); + TIter next(temp); + TChain *questo = 0; + while ( (questo = (TChain*) next()) ){ + TString name = questo->GetName(); + contents->Add((TChain*)gROOT->FindObject(name.Data()));// add object to the list + }; + // + // deleting the main chain + // + pam_tree->Delete(); + // + // deleting the friends... + // + TIter next2(contents); + TChain *questa = 0; + while ( questa = (TChain*)next2() ){ + TString name = questa->GetName(); + questa->Delete(); + questa=NULL; + }; + // + }; + pam_tree = NULL; + // + if(run_tree)run_tree->Delete();; + run_tree = NULL; + if(sel_tree)sel_tree->Delete();; + sel_tree = NULL; + // + // Close file + // + if(l0_file)l0_file->Close("R"); + l0_file = NULL; + // + h0_obj = 0; + trk0_obj = 0; + calo0_obj = 0; + // + trk2_obj = 0; + trk1_obj = 0; + trkh_obj = 0; + calo1_obj = 0; + calo2_obj = 0; + tof_obj = 0; + trig_obj = 0; + s4_obj = 0; + nd_obj = 0; + ac_obj = 0; + orb_obj = 0; + // + // Reset run pointers + // + run_obj = 0;//new GL_RUN(); + soft_obj = 0;// Emiliano + irun = -1; + runfirstentry = 0ULL; + runlastentry = 0ULL; + // }; @@ -404,6 +597,16 @@ } //-------------------------------------- // + +/** + * 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. + **/ +void PamLevel2::SortTracks(TString how){ + printf(" WARNING! obsolete, use SortTracks() and SetSortingMethod(TString) instead! \n Setting sorting method to %s \n",how.Data()); + howtosort = how; + SortTracks(); +}; + // //-------------------------------------- /** @@ -417,209 +620,345 @@ * * 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). */ -void PamLevel2::SortTracks(TString how){ +void PamLevel2::SortTracks(){ + TString how = howtosort; -// cout <<" PamLevel2::SortTracks(TString how) "<Clear(); -// sorted_tracks.Clear(); + // if(!sorted_tracks)sorted_tracks = new TRefArray(); + // sorted_tracks->Clear(); + // sorted_tracks.Clear(); - if(!tsorted)tsorted = new TClonesArray("PamTrack",trk2_obj->GetNTracks()); - tsorted->Delete(); - TClonesArray &ttsorted = *tsorted; - if(!timage)timage = new TClonesArray("PamTrack",trk2_obj->GetNTracks()); - timage->Delete(); - TClonesArray &ttimage = *timage; + if(!tsorted)tsorted = new TClonesArray("PamTrack",trk2_obj->GetNTracks()); + tsorted->Delete(); + TClonesArray &ttsorted = *tsorted; + if(!timage)timage = new TClonesArray("PamTrack",trk2_obj->GetNTracks()); + timage->Delete(); + TClonesArray &ttimage = *timage; - // loop over the tracks sorted by the tracker - Bool_t use_TRK = how.Contains("TRK", TString::kIgnoreCase); - Bool_t use_CAL = how.Contains("CAL", TString::kIgnoreCase); - Bool_t use_TOF = how.Contains("TOF", TString::kIgnoreCase); + // loop over the tracks sorted by the tracker + Bool_t use_TRK = how.Contains("TRK", TString::kIgnoreCase); + Bool_t use_CAL = how.Contains("CAL", TString::kIgnoreCase); + Bool_t use_TOF = how.Contains("TOF", TString::kIgnoreCase); - if( !CAL2 && use_CAL) use_CAL = false; - if( !TOF && use_TOF) use_TOF = false; + if( !CAL2 && use_CAL) use_CAL = false; + if( !TOF && use_TOF) use_TOF = false; - if( !TRK2 ){ -// cout << "SortTracks() : without tracker does not work!!! (not yet)" << endl; - return; - }; + if( !TRK2 ){ + // cout << "SortTracks() : without tracker does not work!!! (not yet)" << endl; + return; + }; - // cout << "use_CAL "<TrkLevel2::GetNTracks(); i++){ + for(Int_t i=0; i < trk2_obj->TrkLevel2::GetNTracks(); i++){ - TrkTrack *ts = 0; - CaloTrkVar *cs = 0; - ToFTrkVar *os = 0; - - // get tracker tracks - TrkTrack *tp = trk2_obj->TrkLevel2::GetTrack(i); //tracker - CaloTrkVar *cp = GetCaloStoredTrack(tp->GetSeqNo()); - ToFTrkVar *op = GetToFStoredTrack(tp->GetSeqNo()); - - TrkTrack *ti = 0; //tracker (image) - CaloTrkVar *ci = 0; - ToFTrkVar *oi = 0; -// cout << "trk track n. "<HasImage()){ + TrkTrack *ts = 0; + CaloTrkVar *cs = 0; + ToFTrkVar *os = 0; + + // get tracker tracks + TrkTrack *tp = trk2_obj->TrkLevel2::GetTrack(i); //tracker + CaloTrkVar *cp = GetCaloStoredTrack(tp->GetSeqNo()); + ToFTrkVar *op = GetToFStoredTrack(tp->GetSeqNo()); + + TrkTrack *ti = 0; //tracker (image) + CaloTrkVar *ci = 0; + ToFTrkVar *oi = 0; + // cout << "trk track n. "<HasImage()){ - ti = trk2_obj->TrkLevel2::GetTrackImage(i); //tracker (image) - ci = GetCaloStoredTrack(ti->GetSeqNo()); - oi = GetToFStoredTrack(ti->GetSeqNo()); + ti = trk2_obj->TrkLevel2::GetTrackImage(i); //tracker (image) + ci = GetCaloStoredTrack(ti->GetSeqNo()); + oi = GetToFStoredTrack(ti->GetSeqNo()); -// cout << "its image "<npcfit[1] > 15 && //no. of fit planes on Y view - calo2_obj->varcfit[1] < 1000. && //fit variance on Y view - true){ + // ------------------------ + // calorimeter check + // ------------------------ + // check the Y spatial residual on the first calorimeter plane + // (cut on calorimeter variables from Emiliano) + if( use_CAL && !calo2_obj ){ + cout << "void PamLevel2::SortTracks(): howtosort= "<npcfit[1] > 5 && //no. of fit planes on Y view + calo2_obj->varcfit[1] < 1000. && //fit variance on Y view + cp && ci && + true){ - Float_t resy_p = cp->tbar[0][1] - calo2_obj->cbar[0][1]; if(resy_p < 0)resy_p= - resy_p; - Float_t resy_i = ci->tbar[0][1] - calo2_obj->cbar[0][1]; if(resy_i < 0)resy_i= - resy_i; + Float_t resy_p = cp->tbar[0][1] - calo2_obj->cbar[0][1]; if(resy_p < 0)resy_p= - resy_p; + Float_t resy_i = ci->tbar[0][1] - calo2_obj->cbar[0][1]; if(resy_i < 0)resy_i= - resy_i; - if(resy_p <= resy_i) tp_score++; - else ti_score++; + if(resy_p <= resy_i) tp_score++; + else ti_score++; + + // cout << "CALO "<npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) ); + if ( pl == 2 || pl == 3 || pl == 4 || pl == 5 ) sen += (op->dedx).At(ih); + }; + for (Int_t ih=0; ih < oi->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) ); + if ( pl == 2 || pl == 3 || pl == 4 || pl == 5 ) sen += (oi->dedx).At(ih); + }; + // + if ( sen >= sortthr ){ + //printf(" IS A NUCLEUS! en = %f \n",sen); + // + // is a nucleus use a different algorithm + // + Int_t nz = 6; Float_t zin[6]; // << define TOF z-coordinates + for(Int_t ip=0; ipToFLevel2::GetZTOF(tof_obj->ToFLevel2::GetToFPlaneID(ip)); // << read ToF plane z-coordinates + Trajectory *tr = new Trajectory(nz,zin); + // + Int_t nphit_p =0; + Int_t nphit_i =0; + Float_t enhit_p = 0.; + Float_t enhit_i = 0.; + // + for (Int_t ih=0; ih < op->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) ); + if(pl == 1 || pl == 2 || pl == 5){ + nphit_p++; + enhit_p += (op->dedx).At(ih); + }; + }; + // + tp->DoTrack2(tr); + // + if ( fabs(tr->y[0]-oi->ytofpos[0]) < 2. ){ + for (Int_t ih=0; ih < op->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) ); + if(pl == 0){ + nphit_p++; + enhit_p += (op->dedx).At(ih); + }; + }; + }; + if ( fabs(tr->y[3]-oi->ytofpos[1]) < 2. ){ + for (Int_t ih=0; ih < op->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) ); + if(pl == 3){ + nphit_p++; + enhit_p += (op->dedx).At(ih); + }; + }; + }; + if ( fabs(tr->y[4]-oi->ytofpos[2]) < 2. ){ + for (Int_t ih=0; ih < op->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) ); + if(pl == 4){ + nphit_p++; + enhit_p += (op->dedx).At(ih); + }; + }; + }; + for (Int_t ih=0; ih < oi->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) ); + if(pl == 1 || pl == 2 || pl == 5){ + nphit_i++; + enhit_i += (op->dedx).At(ih); + }; + }; + // + ti->DoTrack2(tr); + // + if ( fabs(tr->y[0]-oi->ytofpos[0]) < 2. ){ + for (Int_t ih=0; ih < oi->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) ); + if(pl == 0){ + nphit_i++; + enhit_i += (op->dedx).At(ih); + }; + }; + }; + if ( fabs(tr->y[3]-oi->ytofpos[1]) < 2. ){ + for (Int_t ih=0; ih < oi->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) ); + if(pl == 3){ + nphit_i++; + enhit_i += (op->dedx).At(ih); + }; }; - // ------------------------ - // TOF check - // ------------------------ - // check the number of hit pmts along the track - // on S12 S21 and S32, where paddles are parallel to Y axis - if( use_TOF && !tof_obj ){ - cout << "void PamLevel2::SortTracks(TString how): how= "<y[4]-oi->ytofpos[2]) < 2. ){ + for (Int_t ih=0; ih < oi->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) ); + if(pl == 4){ + nphit_i++; + enhit_i += (op->dedx).At(ih); + }; }; - if( use_TOF ){ + }; + - Int_t nphit_p =0; - Int_t nphit_i =0; + if( + use_TOF && + (nphit_p+nphit_i) !=0 && + true){ + + // 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); + // printf(" score p %i score i %i \n",tp_score,ti_score); + // if( enhit_p > enhit_i ) tp_score++; + // if( nphit_p >= nphit_i && enhit_p > enhit_i ) tp_score++; + if ( nphit_p > nphit_i ) tp_score++; + if ( nphit_p < nphit_i ) ti_score++; + if ( nphit_p == nphit_i ){ + if ( enhit_p > enhit_i ) tp_score++; + else ti_score++; + }; + // printf(" dopo score p %i score i %i \n",tp_score,ti_score); + }; + delete tr; + // + } else { + // + // NOT a NUCLEUS + // + //printf(" NOT a NUCLEUS! en = %f \n",sen); + + Int_t nphit_p =0; + Int_t nphit_i =0; -/* cout << "track: npmtadc "<< op->npmtadc << endl; - cout << "track: npmttdc "<< op->npmttdc << endl; - cout << "image: npmtadc "<< oi->npmtadc << endl; - cout << "image: npmttdc "<< oi->npmttdc << endl;*/ + /* cout << "track: npmtadc "<< op->npmtadc << endl; + cout << "track: npmttdc "<< op->npmttdc << endl; + cout << "image: npmtadc "<< oi->npmtadc << endl; + cout << "image: npmttdc "<< oi->npmttdc << endl;*/ - for (Int_t ih=0; ih < op->npmtadc; ih++){ - Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) ); - if(pl == 1 || pl == 2 || pl == 5)nphit_p++; - }; + for (Int_t ih=0; ih < op->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (op->pmtadc).At(ih) ); + if(pl == 1 || pl == 2 || pl == 5)nphit_p++; + }; - for (Int_t ih=0; ih < oi->npmtadc; ih++){ - Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) ); - if(pl == 1 || pl == 2 || pl == 5)nphit_i++; - }; + for (Int_t ih=0; ih < oi->npmtadc; ih++){ + Int_t pl = tof_obj->GetPlaneIndex( (oi->pmtadc).At(ih) ); + if(pl == 1 || pl == 2 || pl == 5)nphit_i++; + }; - if( - use_TOF && - (nphit_p+nphit_i) !=0 && - true){ + if( + use_TOF && + (nphit_p+nphit_i) !=0 && + true){ - if( nphit_p >= nphit_i) tp_score++; - else ti_score++; - }; -// cout << "TOF "<chi2 > 0 && tp->chi2 < ti->chi2 ) tp_score++ ; - else if( ti->chi2 > 0 && ti->chi2 < tp->chi2 ) ti_score++ ; -// cout << "TRK "<= nphit_i) tp_score++; + else ti_score++; + }; + }; + // cout << "TOF "<chi2 > 0 && tp->chi2 < ti->chi2 ) tp_score++ ; + else if( ti->chi2 > 0 && ti->chi2 < tp->chi2 ) ti_score++ ; + // cout << "TRK "< ti_score) { -// ts = tp;//the track sorted by the tracker!! -// cs = cp; -// os = op; - }else if (tp_score < ti_score) { - ts = ti;//its image!! - cs = ci; - os = oi; - - ti = tp;//its image!! - ci = cp; - oi = op; - - tp = ts;//its image!! - cp = cs; - op = os; + // ------------------------ + // the winner is.... + // ------------------------ + if (tp_score > ti_score) { + // ts = tp;//the track sorted by the tracker!! + // cs = cp; + // os = op; + // cout << "It's primary!" << endl; + + }else if (tp_score < ti_score) { + + // cout << "It's image!" << endl; + + ts = ti;//its image!! + cs = ci; + os = oi; + + ti = tp;//its image!! + ci = cp; + oi = op; + + tp = ts;//its image!! + cp = cs; + op = os; - }else { -// ts = tp; -// cs = cp; -// os = op; -// cout << "Warning - track image ambiguity not solved" << endl; -// cout << ts->GetNtot() << " "<< ts->chi2 << " " << npcfit[1] << " "<< nphit_p << endl; - }; + }else { + // ts = tp; + // cs = cp; + // os = op; + cout << "Warning - track image ambiguity not solved" << endl; + // cout << ts->GetNtot() << " "<< ts->chi2 << " " << npcfit[1] << " "<< nphit_p << endl; + }; - }else{ -// ts = tp; -// cs = cp; -// os = op; - }; - -// cout <<" SortTracks() "<Add(ts);//save the track in the sorted array -// sorted_tracks.Add(ts);//save the track in the sorted array -// sorted_tracks.Add(tp);//save the track in the sorted array -// cout << "SortTracks:: sorted_tracks->Add(it) "<GetEntries() != trk2_obj->GetNTracks() ){ - cout << "void PamLevel2::SortTracks(TString how): tsorted->GetEntries() "<GetEntries()<<" != trk2_obj->GetNTracks() = "<GetNTracks() <Delete(); tsorted=0; - timage->Delete(); timage=0; - } - - //Restore Object count - //To save space in the table keeping track of all referenced objects - //We reset the object count to what it was at the beginning of the event. - TProcessID::SetObjectCount(ObjectNumber); + }else{ + // ts = tp; + // cs = cp; + // os = op; + }; + + // cout <<" SortTracks() "<Add(ts);//save the track in the sorted array + // sorted_tracks.Add(ts);//save the track in the sorted array + // sorted_tracks.Add(tp);//save the track in the sorted array + // cout << "SortTracks:: sorted_tracks->Add(it) "<GetEntries() != trk2_obj->GetNTracks() ){ + cout << "void PamLevel2::SortTracks(): tsorted->GetEntries() "<GetEntries()<<" != trk2_obj->GetNTracks() = "<GetNTracks() <Delete(); tsorted=0; + timage->Delete(); timage=0; + } + + //Restore Object count + //To save space in the table keeping track of all referenced objects + //We reset the object count to what it was at the beginning of the event. + TProcessID::SetObjectCount(ObjectNumber); }; //-------------------------------------- @@ -643,7 +982,7 @@ TClonesArray *PamLevel2::GetTracks(){ // *-*-*-*-*-*-*-*-*-*-*-*-* - SortTracks("+CAL+TOF"); + SortTracks(); // *-*-*-*-*-*-*-*-*-*-*-*-* return tsorted; @@ -662,7 +1001,7 @@ // if(!trk2_obj) return 0; -// // *-*-*-*-*-*-*-*-*-*-*-*-* +// // *-*-*-*+-*-*-*-*-*-*-*-*-* // SortTracks("+CAL+TOF"); // // *-*-*-*-*-*-*-*-*-*-*-*-* // // if(!sorted_tracks)return 0; @@ -681,7 +1020,7 @@ // cout << "PamLevel2::GetTrack(int it) "<GetEntries())return 0; @@ -738,7 +1077,7 @@ // *-*-*-*-*-*-*-*-*-*-*-*-* - SortTracks("+CAL+TOF"); + SortTracks(); // *-*-*-*-*-*-*-*-*-*-*-*-* if(!timage)return 0; if(!timage->GetEntries())return 0; @@ -775,6 +1114,14 @@ // if( !detlist.IsNull() ) SetWhichTrees(detlist); // else GetWhichTrees(f); + if ( pam_tree ){ + printf("WARNING: TTree *PamLevel2::GetPamTree(TFile *fl, TString detlist) -- pam_tree already exists!\n "); + return pam_tree; + }; + // + + cout << "TTree *PamLevel2::GetPamTree(TFile *f, TString detlist ) -- obsolte "<GetName(); if(!CheckLevel2File(fname))return NULL; - UInt_t *found=0; +// UInt_t *found=0; cout<< "GetPamTree(TFile*,TString): detector list --> "; if(TRK1)cout<<"TRK1 "; @@ -797,6 +1144,7 @@ if(S4)cout<<"S4 "; if(ORB)cout<<"ORB "; cout << endl; + if(SELLI)cout<<">>> Found selection-list <<<"<cd(); @@ -804,13 +1152,13 @@ TTree *T = (TTree*)f->Get("Tracker"); if(T && (TRK2||TRK1||TRKh)) { if(TRK2)T->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2")); - else T->SetBranchStatus("TrkLevel2",0,found); +// else T->SetBranchStatus("TrkLevel2",0,found); if(TRK2)cout << "Tracker : set branch address TrkLevel2"<SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1")); - else T->SetBranchStatus("TrkLevel1",0,found); +// else T->SetBranchStatus("TrkLevel1",0,found); if(TRK1)cout << "Tracker : set branch address TrkLevel1"<SetBranchAddress("TrkHough", GetPointerTo("TrkHough")); - else T->SetBranchStatus("TrkHough",0,found); +// else T->SetBranchStatus("TrkHough",0,found); if(TRKh)cout << "Tracker : set branch address TrkHough"<AddFriend(T); @@ -821,10 +1169,10 @@ TTree *C = (TTree*)f->Get("Calorimeter"); if(C && (CAL2||CAL1)) { if(CAL2)C->SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2")); - else C->SetBranchStatus("CaloLevel2",0,found); +// else C->SetBranchStatus("CaloLevel2",0,found); if(CAL2)cout << "Calorimeter : set branch address CaloLevel2"<SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1")); - else C->SetBranchStatus("CaloLevel1",0,found); +// else C->SetBranchStatus("CaloLevel1",0,found); if(CAL1)cout << "Calorimeter : set branch address CaloLevel1"<AddFriend(C); @@ -847,7 +1195,7 @@ if(R && TRG) { R->SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2")); cout << "Trigger : set branch address TrigLevel2"<AddFriend(R); }else{ cout << "Trigger : missing tree"<SetBranchAddress("S4Level2", GetPointerTo("S4Level2")); cout << "S4 : set branch address S4Level2"<AddFriend(S); }else{ cout << "S4 : missing tree"<SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2")); cout << "NeutronD : set branch address NDLevel2"<AddFriend(N); }else{ cout << "NeutronD : missing tree"<SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2")); cout << "Anticounter : set branch address AcLevel2"<AddFriend(A); }else{ cout << "Anticounter : missing tree"<SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo")); cout << "OrbitalInfo : set branch address OrbitalInfo"<AddFriend(B); }else{ cout << "OrbitalInfo : missing tree"<Get("SelectionList"); + if(L && SELLI==1) { +// L->SetBranchAddress("RunEntry",&irun); +// cout << "SelectionList: set branch address RunEntry"<SetBranchAddress("EventEntry",&irunentry); +// cout << "SelectionList: set branch address EventEntry"<AddFriend("SelectionList"); + cout << " TTree *PamLevel2::GetPamTree(TFile, TString) >>> SelectionList not implemente!!!!"<GetEntries()<WorkingDirectory(); - if(ddir=="")ddir = wdir; + // if(ddir=="")ddir = wdir; // TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir); - cout << "Level2 data directory : "<< ddir << endl; - + if ( ddir != ""){ + cout << "Level2 data directory : "<< ddir << endl; + } else { + cout << "Level2 data directory not given as input: trying to evaluate from list or taking working directory " << endl; + }; TList *contents = new TList; // create output list contents->SetOwner(); @@ -932,6 +1299,7 @@ // return 0; // } // flisttxt = fullpath; + if ( !flisttxt.EndsWith(".root") ){ flisttxt = gSystem->ConcatFileName(gSystem->DirName(flisttxt),gSystem->BaseName(flisttxt)); @@ -963,21 +1331,39 @@ // cout <<"(2) " << file << endl; // if( gSystem->IsFileInIncludePath(file,&fullpath) ){ // if( (fullpath = gSystem->FindFile(ddir,file)) ){ - char *fullpath = gSystem->ConcatFileName(gSystem->DirName(ddir),gSystem->BaseName(file)); - contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));// add file to the list - delete fullpath; + if( file.EndsWith(".root") ){ + TString filedir; + if (ddir != ""){ + filedir = ddir; // take the input dir + } else { + gSystem->ChangeDirectory(wdir); // back to the working directory + filedir = gSystem->DirName(file); // this will take the path if exist in the list otherwise it will return automatically the working dir + }; + char *fullpath = gSystem->ConcatFileName(gSystem->DirName(filedir),gSystem->BaseName(file)); + contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));// add file to the list + delete fullpath; + } // }else{ // if(file.Data()!="")cout << "File: "< missing "<< endl; // }; }; in.close(); - + } else { + if(flisttxt.Contains("#"))flisttxt = flisttxt(0,flisttxt.First("#")); + char *fullpath = gSystem->ConcatFileName(gSystem->DirName(flisttxt),gSystem->BaseName(flisttxt)); + contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));// add file to the list + delete fullpath; + }; }else{ cout << "No input file list given."<WorkingDirectory()<< endl; - + if ( ddir == "" ){ + ddir = wdir; + cout << "Level2 data directory : "<< ddir << endl; + }; + TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir); TList *temp = datadir->GetListOfFiles(); // temp->Print(); @@ -1021,6 +1407,14 @@ * @return Pointer to a TChain */ TChain *PamLevel2::GetPamTree(TList *fl, TString detlist ){ + // + // + // + if ( pam_tree ){ + printf("WARNING: TChain *PamLevel2::GetPamTree(TList *fl, TString detlist) -- pam_tree already exists!\n "); + return pam_tree; + }; + // TChain *Trout =0; @@ -1041,14 +1435,16 @@ if(ORB)cout<<"ORB "; cout << endl; - TChain *T = 0; - TChain *C = 0; - TChain *O = 0; - TChain *R = 0; - TChain *S = 0; - TChain *N = 0; - TChain *A = 0; - TChain *B = 0; + TChain *T = 0; + TChain *C = 0; + TChain *O = 0; + TChain *R = 0; + TChain *S = 0; + TChain *N = 0; + TChain *A = 0; + TChain *B = 0; + + TChain *L = 0; if(TRK2||TRK1||TRKh) T = new TChain("Tracker"); if(CAL2||CAL1) C = new TChain("Calorimeter"); @@ -1058,6 +1454,7 @@ if(ND) N = new TChain("NeutronD"); if(AC) A = new TChain("Anticounter"); if(ORB) B = new TChain("OrbitalInfo"); + L = new TChain("SelectionList"); // loop over files and create chains TIter next(fl); @@ -1074,35 +1471,37 @@ if(ND) N->Add(name); if(AC) A->Add(name); if(ORB) B->Add(name); + if(SELLI==1) L->Add(name); }; - } + }; cout << "done chain \n"; + cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2")); - else T->SetBranchStatus("TrkLevel2",0,found); +// else T->SetBranchStatus("TrkLevel2",0,found); if(TRK2)cout << "Tracker : set branch address TrkLevel2"<SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1")); - else T->SetBranchStatus("TrkLevel1",0,found); +// else T->SetBranchStatus("TrkLevel1",0,found); if(TRK1)cout << "Tracker : set branch address TrkLevel1"<SetBranchAddress("TrkHough", GetPointerTo("TrkHough")); - else T->SetBranchStatus("TrkHough",0,found); +// else T->SetBranchStatus("TrkHough",0,found); if(TRKh)cout << "Tracker : set branch address TrkHough"<AddFriend("Tracker"); + else Trout->AddFriend("Tracker"); }else{ cout << "Tracker : missing tree"<SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2")); - else C->SetBranchStatus("CaloLevel2",0,found); +// else C->SetBranchStatus("CaloLevel2",0,found); if(CAL2)cout << "Calorimeter : set branch address CaloLevel2"<SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1")); - else C->SetBranchStatus("CaloLevel1",0,found); +// else C->SetBranchStatus("CaloLevel1",0,found); if(CAL1)cout << "Calorimeter : set branch address CaloLevel1"<AddFriend("Calorimeter"); @@ -1163,55 +1562,28 @@ }else{ cout << "OrbitalInfo : missing tree"<>> Found selection-list <<<"<SetBranchAddress("RunEntry",&irun); + cout << "SelectionList: set branch address RunEntry"<SetBranchAddress("EventEntry",&irunentry); + cout << "SelectionList: set branch address EventEntry"<AddFriend("SelectionList"); + cout << "----------------------------------------------------" <Delete(); + }; // cout<GetEntries()<AddFriend("Tracker"); -// } -// // Calorimeter -// if(CAL2||CAL1) { -// if(!Tout)Tout=C; -// else Tout->AddFriend("Calorimeter"); -// }; -// // ToF -// if(TOF) { -// if(!Tout)Tout=O; -// else Tout->AddFriend("ToF"); -// }; -// // Trigger -// if(TRG) { -// if(!Tout)Tout=R; -// else Tout->AddFriend("Trigger"); -// }; -// // S4 -// if(S4) { -// if(!Tout)Tout=S; -// else Tout->AddFriend("S4"); -// }; -// // Neutron Detector -// if(ND) { -// if(!Tout)Tout=N; -// else Tout->AddFriend("NeutronD"); -// }; -// // Anticounters -// if(AC) { -// if(!Tout)Tout=A; -// else Tout->AddFriend("Anticounter"); -// }; -// // OrbitalInfo -// if(ORB) { -// if(!Tout)Tout=B; -// else Tout->AddFriend("OrbitalInfo"); -// }; - -// cout<GetEntries()<GetEntries() )PamLevel2::SetBranchAddress( Tout ); - + pam_tree = Trout; + return Trout; } @@ -1293,6 +1665,13 @@ t->SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo")); cout << "OrbitalInfo : set branch address OrbitalInfo"<SetBranchAddress("RunEntry", &irun); + cout << "SelectionList: set branch address RunEntry"<SetBranchAddress("EventEntry", &irunentry); + cout << "SelectionList: set branch address EventEntry"<SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo")); cout << "OrbitalInfo : set branch address OrbitalInfo"<SetBranchAddress("RunEntry", &irun); + cout << "SelectionList: set branch address RunEntry"<SetBranchAddress("EventEntry", &irunentry); + cout << "SelectionList: set branch address EventEntry"<Add(name); }; } + + if(R->GetNtrees()){ - R->SetBranchAddress("RunInfo", GetPointerTo("RunInfo")); - cout << "Run : set branch address RunInfo"<SetBranchAddress("SoftInfo", GetPointerTo("SoftInfo")); // Emiliano - cout << "Software : set branch address SoftInfo"<SetBranchAddress("RunInfo", GetPointerTo("RunInfo")); + cout << "Run : set branch address RunInfo"<SetBranchAddress("SoftInfo", GetPointerTo("SoftInfo")); // Emiliano + cout << "Software : set branch address SoftInfo"<Get("Run"); + TTree *T = (TTree*)f->Get("Run"); - R->SetBranchAddress("RunInfo", GetPointerTo("RunInfo")); - cout << "Run : set branch address RunInfo"<SetBranchAddress("SoftInfo", GetPointerTo("SoftInfo")); // Emiliano - cout << "Software : set branch address SoftInfo"<SetBranchAddress("RunInfo", GetPointerTo("RunInfo")); + cout << "Run : set branch address RunInfo"<SetBranchAddress("SoftInfo", GetPointerTo("SoftInfo")); // Emiliano + cout << "Software : set branch address SoftInfo"<GetEntries() <= 0 ) return(false); + cout << "Bool_t PamLevel2::UpdateRunInfo(TChain *run, Long64_t iev) --- NON FUNZIONA BENISSIMO.... "<GetEntries() <= 0 ) return(false); // - Int_t oldrun = irun; - if ( irun < 0 ){ - irun = 0; - run->GetEntry(0); - runfirstentry = 0ULL; - runlastentry += (ULong64_t)(this->GetRunInfo()->NEVENTS) - 1ULL; - }; - while ( iev > (runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS-1)) && irun < run->GetEntries() ){ - // printf(" iev %llu %u %llu \n",iev,this->GetRunInfo()->NEVENTS,(ULong64_t)(runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS))); - irun++; - run->GetEntry(irun); - runfirstentry = runlastentry+1ULL; - runlastentry += (ULong64_t)(this->GetRunInfo()->NEVENTS); + + // Int_t oldrun = irun; + Long64_t oldrun = irun; + + // -------------------------------------- + // if it is a full file (not preselected) + // -------------------------------------- + if(SELLI==0){ + + // + // the absolute time is necessary to relate the event with the run + // + if( !GetOrbitalInfo() ){ + cout << "Bool_t PamLevel2::UpdateRunInfo(TChain *run, ULong64_t iev) -- ERROR -- missing OrbitalInfo "<GetEntry(irun); + runfirstentry = 0LL; + runlastentry += (Long64_t)(this->GetRunInfo()->NEVENTS); + if ( (Long64_t)(this->GetRunInfo()->NEVENTS) > 0LL ) runlastentry -= 1LL; + }; + // + if ( irun == run->GetEntries()-1LL && + !(GetOrbitalInfo()->absTime >= GetRunInfo()->RUNHEADER_TIME && + GetOrbitalInfo()->absTime <= GetRunInfo()->RUNTRAILER_TIME) + ){ + irun = -1LL; + runfirstentry = 0LL; + runlastentry = -1LL; + }; + // modificato il controllo sull'aggiornamento del run, per evitare problemi + // dovuti agli eventi annidati (NB! NEVENTS conta anche questi!!) + // + bool fromfirst = true; + // + while ( !(GetOrbitalInfo()->absTime >= GetRunInfo()->RUNHEADER_TIME && GetOrbitalInfo()->absTime <= GetRunInfo()->RUNTRAILER_TIME) && irun < run->GetEntries()-1LL ){ +// while ( iev > (runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS-1)) && irun < run->GetEntries() ){ + irun++; + run->GetEntry(irun); + runfirstentry = runlastentry; + if ( (Long64_t)(this->GetRunInfo()->NEVENTS) > 0LL ) runfirstentry += 1LL; + runlastentry += (Long64_t)(this->GetRunInfo()->NEVENTS); +// cout << " ))))) UPDATE RUN INFO ((((( @iev "<ID<<" irun "<GetRunInfo()->NEVENTS,(ULong64_t)(runfirstentry+(ULong64_t)(this->GetRunInfo()->NEVENTS))); + // printf(" abstime %u trailertime %u \n",GetOrbitalInfo()->absTime,GetRunInfo()->RUNTRAILER_TIME); + // printf(" IDRUN %u \n",GetRunInfo()->ID); + // +// prevshift = 0; + // + if ( irun == (Long64_t)(run->GetEntries()-1LL) && fromfirst && !(GetOrbitalInfo()->absTime >= GetRunInfo()->RUNHEADER_TIME && GetOrbitalInfo()->absTime <= GetRunInfo()->RUNTRAILER_TIME)){ + printf(" resetting irun (it should NOT happen!!!)\n"); + fromfirst = false; + irun = 0; + run->GetEntry(irun); + runfirstentry = 0ULL; + runlastentry += (Long64_t)(this->GetRunInfo()->NEVENTS); + if ( (Long64_t)(this->GetRunInfo()->NEVENTS) > 0LL ) runlastentry -= 1LL; + }; + // + }; + // + if ( + !(GetOrbitalInfo()->absTime >= GetRunInfo()->RUNHEADER_TIME && + GetOrbitalInfo()->absTime <= GetRunInfo()->RUNTRAILER_TIME) + ) { + printf(" Something very wrong here: cannot find RUN containing absolute time %u \n",GetOrbitalInfo()->absTime); + return false; + } + // + if ( irun == oldrun || irun >= run->GetEntries() ) return(false); + // + // printf(" iev %llu irun %i nevents %u 1st %llu last %llu \n",iev,irun,this->GetRunInfo()->NEVENTS,(ULong64_t)runfirstentry,(ULong64_t)runlastentry); + // + prevshift = 0; + cout << " ))))) UPDATE RUN INFO ((((( @iev "<ID<<" irun "<GetEntry(iev); +// cout << irun << " "<< irunentry << endl; + if(irun != oldrun){ + run->GetEntry(irun); + cout << " ))))) UPDATE RUN INFO ((((( @iev "<ID<<" irun "<= run->GetEntries() ) return(false); - // - // printf(" iev %llu irun %i nevents %u 1st %llu last %llu \n",iev,irun,this->GetRunInfo()->NEVENTS,(ULong64_t)runfirstentry,(ULong64_t)runlastentry); - // - return(true); - // +}; + +Bool_t PamLevel2::UpdateRunInfo(Long64_t iev){ + + if(!run_tree){ + cout << " Bool_t PamLevel2::UpdateRunInfo(ULong64_t iev) -- ERROR -- run tree not loaded"<GetEntries() <= 0 ) { + cout << " Bool_t PamLevel2::UpdateRunInfo(ULong64_t iev) -- ERROR -- run tree is empty"<GetEntry(irun); + }; + // + bool fromfirst = true; // first loop over runs + // ------------------------------------------------------ + // loop over runs to find the one that contains the event + // ------------------------------------------------------ + while ( !(GetOrbitalInfo()->absTime >= GetRunInfo()->RUNHEADER_TIME && // check on absolute time (s) + GetOrbitalInfo()->absTime <= GetRunInfo()->RUNTRAILER_TIME) && + !(GetOrbitalInfo()->OBT >= GetRunInfo()->RUNHEADER_OBT && // additional check on OBT (ms) + GetOrbitalInfo()->OBT <= GetRunInfo()->RUNTRAILER_OBT) && + irun < run_tree->GetEntries() ){ + irun++; + // ------------------------------------ + // if the end of run tree is reached... + // ------------------------------------ + if( irun == run_tree->GetEntries() ){ + if(!fromfirst){ + // ----------------------------------------------------- + // if it happened already once and the run was not found + // ---> exit with error + // ----------------------------------------------------- + cout << "Bool_t PamLevel2::UpdateRunInfo(Long64_t iev) -- ERROR -- event entry #"<0)runfirstentry += (GetRunInfo()->NEVENTS); + run_tree->GetEntry(irun); + if(GetRunInfo()->RUNHEADER_OBT>=GetRunInfo()->RUNTRAILER_OBT ){ + cout << "Bool_t PamLevel2::UpdateRunInfo(Long64_t iev) -- WARNING -- irun "<=RUNTRAILER_OBT " < exit with FALSE + // -------------------------------------- + if ( irun == oldrun ) return(false); + + // -------------------------------------- + // ... otherwise + // ---> exit with TRUE + // -------------------------------------- + cout << endl << " ))))) UPDATE RUN INFO ((((( @iev "<ID<<" irun "<GetEntry(iev); + if(irun != oldrun){ + run_tree->GetEntry(irun); + cout << endl << " ))))) UPDATE RUN INFO ((((( @iev "<ID<<" irun "<GetName() << endl; // cout << key->GetName() << ""<GetClassName()<Get(key->GetName())<GetName(),"Run" ) )RUN__ok = true; //========================================================= + if( !strcmp(key->GetName(),"SelectionList" ) ){ + SELLI__ok = true; + if(SELLI==1){ + Int_t nevt = ((TTree*)f->Get("SelectionList"))->GetEntries(); + if( nev && nevt!=nev){ + cout << "File: "<< f->GetName() <<" discarded ---- SelectionList tree has "<GetName(),"Trigger" ) ){ TRG__ok = true; if(TRG){ @@ -1894,7 +2536,19 @@ }; }; + + if( SELLI==-1 )SELLI = (Int_t)SELLI__ok; + if( SELLI==0 && SELLI__ok ){ + cout << "File: "<< f->GetName() <<" discarded ---- found SelectionList (it is not a full-event file)" << endl; + return false; + } + if( SELLI==1 && !SELLI__ok ){ + cout << "File: "<< f->GetName() <<" discarded ---- SelectionList missing" << endl; + return false; + } +// cout << "SELLI "< "; // if(TRK1__ok)cout<<"TRK1 "; // if(TRK2__ok)cout<<"TRK2 "; @@ -2003,11 +2657,11 @@ cout << "Create clones of PAMELA trees "<GetTree()->CloneTree(0); - TString name = tree_clone[i]->GetName(); + pam_tree_clone[i] = fChain->GetTree()->CloneTree(0); + TString name = pam_tree_clone[i]->GetName(); name.Append("_clone"); -// tree_clone[i]->SetName(name.Data()); - cout << tree_clone[i]->GetName() <SetName(name.Data()); + cout << pam_tree_clone[i]->GetName() <GetListOfFriends(); @@ -2017,12 +2671,12 @@ while( (T_friend = (TFriendElement*)next()) ){ // cout<IsA()->GetName()<<" "<GetName()<GetTree() << dec<GetTree()->GetName()<< endl; - tree_clone[i] = T_friend->GetTree()->CloneTree(0); - tree_clone[i]->SetAutoSave(1000000); - name = tree_clone[i]->GetName(); + pam_tree_clone[i] = T_friend->GetTree()->CloneTree(0); + pam_tree_clone[i]->SetAutoSave(1000000); + name = pam_tree_clone[i]->GetName(); name.Append("_clone"); -// tree_clone[i]->SetName(name.Data()); - cout << tree_clone[i]->GetName() << endl; +// pam_tree_clone[i]->SetName(name.Data()); + cout << pam_tree_clone[i]->GetName() << endl; i++; } @@ -2042,21 +2696,45 @@ cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <Branch("RunInfo","GL_RUN",GetPointerTo("RunInfo")); + cout << "Run : branch RunInfo"<Branch("SoftInfo","SoftInfo",GetPointerTo("SoftInfo")); + cout << "Run : branch SoftInfo"<GetEntries(); i++){ + run_tree->GetEntry(i); + cout << i<< "\t | "<ID<<"\t "<NEVENTS<< "\t "<RUNHEADER_TIME<<" <---> "<RUNTRAILER_TIME<Fill(); + } + cout << "----------------------------------------------------"<Branch("RunEntry",&irun,"runentry/L"); + sel_tree_clone->Branch("EventEntry",&irunentry,"eventry/L"); + + + Int_t i=0; if(TRK1||TRK2||TRKh){ - tree_clone[i] = new TTree("Tracker","PAMELA tracker level2 data "); + pam_tree_clone[i] = new TTree("Tracker","PAMELA tracker level2 data "); if(TRK1) { - tree_clone[i]->Branch("TrkLevel1","TrkLevel1", GetPointerTo("TrkLevel1")); - tree_clone[i]->BranchRef(); + pam_tree_clone[i]->Branch("TrkLevel1","TrkLevel1", GetPointerTo("TrkLevel1")); + pam_tree_clone[i]->BranchRef(); cout << "Tracker : branch TrkLevel1"<Branch("TrkLevel2", "TrkLevel2",GetPointerTo("TrkLevel2")); + pam_tree_clone[i]->Branch("TrkLevel2", "TrkLevel2",GetPointerTo("TrkLevel2")); cout << "Tracker : branch TrkLevel2"<Branch("TrkHough","TrkHough", GetPointerTo("TrkHough")); + pam_tree_clone[i]->Branch("TrkHough","TrkHough", GetPointerTo("TrkHough")); cout << "Tracker : branch TrkHough"<Branch("CaloLevel1", "CaloLevel1", GetPointerTo("CaloLevel1")); + pam_tree_clone[i]->Branch("CaloLevel1", "CaloLevel1", GetPointerTo("CaloLevel1")); cout << "Calorimeter : branch CaloLevel1"<Branch("CaloLevel2","CaloLevel2", GetPointerTo("CaloLevel2")); + pam_tree_clone[i]->Branch("CaloLevel2","CaloLevel2", GetPointerTo("CaloLevel2")); cout << "Calorimeter : branch CaloLevel2"<Branch("ToFLevel2","ToFLevel2", GetPointerTo("ToFLevel2")); + pam_tree_clone[i] = new TTree("ToF","PAMELA ToF level2 data "); + pam_tree_clone[i]->Branch("ToFLevel2","ToFLevel2", GetPointerTo("ToFLevel2")); cout << "ToF : branch ToFLevel2"<Branch("TrigLevel2","TrigLevel2", GetPointerTo("TrigLevel2")); + pam_tree_clone[i] = new TTree("Trigger","PAMELA trigger level2 data "); + pam_tree_clone[i]->Branch("TrigLevel2","TrigLevel2", GetPointerTo("TrigLevel2")); cout << "Trigger : branch TrigLevel2"<Branch("S4Level2","S4Level2", GetPointerTo("S4Level2")); + pam_tree_clone[i] = new TTree("S4","PAMELA S4 level2 data "); + pam_tree_clone[i]->Branch("S4Level2","S4Level2", GetPointerTo("S4Level2")); cout << "S4 : branch S4Level2"<Branch("NDLevel2","NDLevel2", GetPointerTo("NDLevel2")); + pam_tree_clone[i] = new TTree("NeutronD","PAMELA neutron detector level2 data "); + pam_tree_clone[i]->Branch("NDLevel2","NDLevel2", GetPointerTo("NDLevel2")); cout << "NeutronD : branch NDLevel2"<Branch("AcLevel2","AcLevel2", GetPointerTo("AcLevel2")); + pam_tree_clone[i] = new TTree("Anticounter","PAMELA anticounter detector level2 data "); + pam_tree_clone[i]->Branch("AcLevel2","AcLevel2", GetPointerTo("AcLevel2")); cout << "Anticounter : branch AcLevel2"<Branch("OrbitalInfo","OrbitalInfo", GetPointerTo("OrbitalInfo")); + pam_tree_clone[i] = new TTree("OrbitalInfo","PAMELA oribital info "); + pam_tree_clone[i]->Branch("OrbitalInfo","OrbitalInfo", GetPointerTo("OrbitalInfo")); cout << "OrbitalInfo : branch OrbitalInfo"<Fill(); + +// cout << "PamLevel2::FillCloneTrees()" << irunentry << endl; + + for(Int_t i=0; iFill(); } + if(sel_tree_clone)sel_tree_clone->Fill(); + } TTree* PamLevel2::GetCloneTree(TString name){ - for(Int_t i=0; i<8; i++){ - if(tree_clone[i]){ - TString na = tree_clone[i]->GetName(); - if(!name.CompareTo(na))return tree_clone[i]; + for(Int_t i=0; iGetName(); + if(!name.CompareTo(na))return pam_tree_clone[i]; }; } + if(run_tree_clone){ + TString na = run_tree_clone->GetName(); + if(!name.CompareTo(na))return run_tree_clone; + } + if(sel_tree_clone){ + TString na = sel_tree_clone->GetName(); + if(!name.CompareTo(na))return sel_tree_clone; + } return NULL; } void PamLevel2::WriteCloneTrees(){ cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <GetName()<Write(); + cout << run_tree_clone->GetName()<Write(); + cout << sel_tree_clone->GetName()<Write(); + for(Int_t i=0; iGetName()<Write(); }; } cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <GetEntry(ii) ){ + cout << " Int_t PamLevel2::GetEntry(Int_t) -- ERROR -- error reading pam tree"<Fill(); + +// cout << "PamLevel2::GetEntry("<ID_ROOT_L0; +// cout << "iroot "<IsConnected())){ + cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<IsConnected() )return NULL; +// cout<<"...done"<Close(); + l0_file->Delete(); + } + cout << "Opening LEVEL0 file: "<< filename << endl; + FileStat_t t; + if( gSystem->GetPathInfo(filename.Data(),t) ){ + cout << " PamLevel2::GetYodaTree() -- ERROR opening file "<Get("Physics"); + if(!h0_obj)h0_obj = new EventHeader(); + l0_tree->SetBranchAddress("Header" ,&h0_obj); + prevshift = 0; + //--------------------------------------------------- + // TRACKER: + if(TRK0){ + if(!trk0_obj){ + trk0_obj = new TrkLevel0(); + trk0_obj->Set(); + }; + l0_tree->SetBranchAddress("Tracker" ,trk0_obj->GetPointerToTrackerEvent()); + } + //--------------------------------------------------- + // CALORIMETER: + if(CAL0){ + if(!calo0_obj){ + calo0_obj = new CaloLevel0(); + calo0_obj->Set(); + }; + l0_tree->SetBranchAddress("Calorimeter" ,calo0_obj->GetPointerToCalorimeterEvent()); + // cout << "PamLevel2::GetYodaTree() --- level0 calorimeter not implemented "<IsConnected())){ + cout << " TTree* PamLevel2::GetYodaTree( ) -- no DB connected... hai fatto qualche cazzata "<Branch("TrkLevel1","TrkLevel1", &trk1_clone); -// T->BranchRef(); -// cout << "Tracker : branch TrkLevel1"<Branch("TrkLevel2", "TrkLevel2",&trk2_clone); -// cout << "Tracker : branch TrkLevel2"<Branch("TrkHough","TrkHough", &trkh_clone); -// cout << "Tracker : branch TrkHough"<AddFriend("Tracker_clone"); -// } - -// // Calorimeter -// if(CAL1||CAL2){ -// TTree *C = new TTree("Calorimeter_clone","PAMELA calorimeter level2 data "); -// if(CAL1) { -// calo1_clone = new CaloLevel1(); -// C->Branch("CaloLevel1", "CaloLevel1", &calo1_clone); -// cout << "Calorimeter : branch CaloLevel1"<Branch("CaloLevel2","CaloLevel2", &calo2_clone); -// cout << "Calorimeter : branch CaloLevel2"<AddFriend("Calorimeter_clone"); -// } - -// // ToF -// if(TOF) { -// TTree *O = new TTree("ToF_clone","PAMELA ToF level2 data "); -// tof_clone = new ToFLevel2(); -// O->Branch("ToFLevel2","ToFLevel2", &tof_clone); -// cout << "ToF : branch ToFLevel2"<AddFriend("ToF_clone"); -// }; -// // Trigger -// if(TRG) { -// TTree *R = new TTree("Trigger_clone","PAMELA trigger level2 data "); -// trig_clone = new TrigLevel2(); -// R->Branch("TrigLevel2","TrigLevel2", &trig_clone); -// cout << "Trigger : branch TrigLevel2"<AddFriend("Trigger_clone"); -// }; -// // S4 -// if(S4) { -// TTree *S = new TTree("S4_clone","PAMELA S4 level2 data "); -// s4_clone = new S4Level2(); -// S->Branch("S4Level2","S4Level2", &s4_clone); -// cout << "S4 : branch S4Level2"<AddFriend("S4_clone"); -// }; -// // Neutron Detector -// if(ND) { -// TTree *N = new TTree("NeutronD_clone","PAMELA neutron detector level2 data "); -// nd_clone = new NDLevel2(); -// N->Branch("NDLevel2","NDLevel2", &nd_clone); -// cout << "NeutronD : branch NDLevel2"<AddFriend("NeutronD_clone"); -// }; -// // Anticounters -// if(AC) { -// TTree *A = new TTree("Anticounter_clone","PAMELA anticounter detector level2 data "); -// ac_clone = new AcLevel2(); -// A->Branch("AcLevel2","AcLevel2", &ac_clone); -// cout << "Anticounter : branch AcLevel2"<AddFriend("Anticounter_clone"); -// }; -// // OrbitalInfo -// if(ORB) { -// TTree *B = new TTree("OrbitalInfo_clone","PAMELA oribital info "); -// orb_clone = new OrbitalInfo(); -// B->Branch("OrbitalInfo","OrbitalInfo", &orb_clone); -// cout << "OrbitalInfo : branch OrbitalInfo"<AddFriend("OrbitalInfo_clone"); -// }; -// cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <EV_FROM); +// cout << " irunentry "<EV_FROM<EV_FROM "<EV_FROM <<" quella giusta "<ID_ROOT_L0 "<ID_ROOT_L0<absTime << endl; +// cout << " trk_calib_used "<TRK_CALIB_USED<< endl; + + if( !GetOrbitalInfo() ){ + cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- missing OrbitalInfo "<OBT==0 && GetOrbitalInfo()->pkt_num==0 ){ + cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- level2 event corrupted ?? "<SetDirectory(0); + // --------------------------------------------------------------------- + // ATTENTION!!! + // If data are not pre-processed with cleaner, the level0 tree may contain + // spurious nested physics packets. + // The GL_RUN variables EV_FROM, EV_TO and NEVENTS counts also these entries + // while level2 tree DOES NOT!! + // This means that "quellagiusta" in these cases is not correct. + // In order to retrieve the correct level0 event, I implemented a check + // of the OBT and pkt-number. In case of mismatch, the level0 entry number + // is shift forward until when the packets match. + // --------------------------------------------------------------------- + Int_t answer = 0; + Int_t shift =0; + // printf(" siamo qui %i %i \n",shift,prevshift); + Int_t maxshift = 100; + do{ + if(shift>0){ + cout << " PKTNUM L2 --- "<< GetOrbitalInfo()->pkt_num << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetCounter()<ID << " ID_ROOT_L0 "<ID_ROOT_L0<<" ID_RUN_FRAG "<ID_RUN_FRAG << " EV_FROM "<EV_FROM < L0 mismatch ( irun "<GetEntry(quellagiusta+(Long64_t)shift+(Long64_t)prevshift); + shift++; + if( !GetEventHeader() ){ + cout << "Int_t PamLevel2::GetYodaEntry() -- ERROR -- missing EventHeader "<pkt_num << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetCounter()<OBT << " --- L0 --- "<< GetEventHeader()->GetPscuHeader()->GetOrbitalTime()<GetEntries()+1 )cout << ">>> end of level0 tree <<<"<OBT "<< GetOrbitalInfo()->OBT << endl; +// cout << " GetEventHeader()->GetPscuHeader()->GetOrbitalTime() "<< GetEventHeader()->GetPscuHeader()->GetOrbitalTime() << endl; +// cout << " GetOrbitalInfo()->pkt_num "<< GetOrbitalInfo()->pkt_num << endl; +// cout << " GetEventHeader()->GetPscuHeader()->GetCounter() "<< GetEventHeader()->GetPscuHeader()->GetCounter() << endl; +// printf(" IDRUN %u \n",GetRunInfo()->ID); +// + if ( prevshift != 0 && (quellagiusta+(Long64_t)shift) == GetYodaTree()->GetEntries() ){ + prevshift = 0; + shift = -1; + }; -// return Tout; -// } -// /** -// * Fill a tree (created with GetNewPamTree) -// * -// */ -// //void PamLevel2::FillNewPamTree(TTree *T){ -// void PamLevel2::FillNewPamTree(){ - + }while( ( GetOrbitalInfo()->OBT != (UInt_t)(GetEventHeader()->GetPscuHeader()->GetOrbitalTime()) || GetOrbitalInfo()->pkt_num != (UInt_t)(GetEventHeader()->GetPscuHeader()->GetCounter())) && (quellagiusta+(Long64_t)shift) < GetYodaTree()->GetEntries() && shift < maxshift); + + if ( (quellagiusta+(Long64_t)shift) == GetYodaTree()->GetEntries() || shift == maxshift ) { + cout << " Big trouble here, no such event in Level0 data! " <GetEntry(quellagiusta); + if ( shift > 1 ) prevshift += (shift-1); + + return answer; + +} -// if(trk1_clone) *trk1_clone = *trk1_obj; -// if(trk2_clone){ -// trk2_clone->Clear(); -// trk2_obj->Copy(*trk2_clone); -// // *trk2_clone = *trk2_obj; -// } -// if(trkh_clone) *trkh_clone = *trkh_obj; -// if(calo1_clone){ -// // *calo1_clone = *calo1_obj; -// calo1_clone->Clear(); -// calo1_obj->Copy(*calo1_clone); -// } -// if(calo2_clone){ -// // *calo2_clone = *calo2_obj; -// calo2_clone->Clear(); -// calo2_obj->Copy(*calo2_clone); -// } -// if(tof_clone) *tof_clone = *tof_obj; -// if(trig_clone) *trig_clone = *trig_obj; -// if(s4_clone) *s4_clone = *s4_obj; -// if(nd_clone) *nd_clone = *nd_obj; -// if(ac_clone) *ac_clone = *ac_obj; -// if(orb_clone) *orb_clone = *orb_obj; - -// TTree *T = tree_clone; - -// T->Fill(); //fill main tree -// // cout<IsA()->GetName()<<" "<GetName()<GetListOfFriends(); -// TIter next(li); -// TFriendElement* T_friend=0; -// while( (T_friend = (TFriendElement*)next()) ){ -// // cout<IsA()->GetName()<<" "<GetName()<GetTree() << dec<GetTree()->Fill();//fill friends -// } -// }