#include //-------------------------------------- // // //-------------------------------------- /** * Default constructor */ PamTrack::PamTrack(){ trk_track = this->TrkTrack::GetTrkTrack(); calo_track = this->CaloTrkVar::GetCaloTrkVar(); tof_track = this->ToFTrkVar::GetToFTrkVar(); }; //-------------------------------------- // // //-------------------------------------- /** * Constructor */ PamTrack::PamTrack(TrkTrack* t, CaloTrkVar* c, ToFTrkVar* o){ trk_track = this->TrkTrack::GetTrkTrack(); calo_track = this->CaloTrkVar::GetCaloTrkVar(); tof_track = this->ToFTrkVar::GetToFTrkVar(); if(t) *trk_track = *t; if(c) *calo_track = *c; if(o) *tof_track = *o; }; //-------------------------------------- // // //-------------------------------------- /** * Constructor */ PamLevel2::PamLevel2(){ 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(); run_obj = new GL_RUN(); // trk1_clone = 0; // trk2_clone = 0; // trkh_clone = 0; // calo1_clone = 0; // calo2_clone = 0; // tof_clone = 0; // trig_clone = 0; // s4_clone = 0; // nd_clone = 0; // ac_clone = 0; // orb_clone = 0; // T_clone = 0; // C_clone = 0; // O_clone = 0; // R_clone = 0; // S_clone = 0; // N_clone = 0; // A_clone = 0; // B_clone = 0; for(Int_t i=0; i<8; i++ )tree_clone[i]=NULL; sorted_tracks = new TRefArray(); CAL1 = true; CAL2 = true; TRK2 = true; TRK1 = false; TRKh = false; TRG = true; TOF = true; S4 = true; ND = true; AC = true; ORB = true; }; /** * Destructor */ PamLevel2::~PamLevel2(){ delete run_obj; Clear(); }; /** * Clear the event */ void PamLevel2::Clear(){ TrkLevel1::Clear(); TrkLevel2::Clear(); CaloLevel2::Clear(); ToFLevel2::Clear(); TrigLevel2::Clear(); S4Level2::Clear(); NDLevel2::Clear(); AcLevel2::Clear(); OrbitalInfo::Clear(); // if(trk1_clone)trk1_clone->Clear(); // if(trk2_clone)trk2_clone->Clear(); // if(trkh_clone)trkh_clone->Clear(); // if(calo1_clone)calo1_clone->Clear(); // if(calo2_clone)calo2_clone->Clear(); // if(tof_clone)tof_clone->Clear(); // if(trig_clone)trig_clone->Clear(); // if(s4_clone)s4_clone->Clear(); // if(nd_clone)nd_clone->Clear(); // if(ac_clone)ac_clone->Clear(); // if(orb_clone)orb_clone->Clear(); sorted_tracks->Delete(); // clean the reference array }; //-------------------------------------- // // //-------------------------------------- void *PamLevel2::GetPointerTo(const char* c ){ TString objname = c; if(!objname.CompareTo("TrkLevel1"))return &trk1_obj; if(!objname.CompareTo("TrkLevel2"))return &trk2_obj; if(!objname.CompareTo("TrkHough"))return &trkh_obj; if(!objname.CompareTo("CaloLevel1"))return &calo1_obj; if(!objname.CompareTo("CaloLevel2"))return &calo2_obj; if(!objname.CompareTo("ToFLevel2"))return &tof_obj; if(!objname.CompareTo("TrigLevel2"))return &trig_obj; if(!objname.CompareTo("S4Level2"))return &s4_obj; if(!objname.CompareTo("NDLevel2"))return &nd_obj; if(!objname.CompareTo("AcLevel2"))return &ac_obj; if(!objname.CompareTo("OrbitalInfo"))return &orb_obj; if(!objname.CompareTo("RunInfo"))return &run_obj; return NULL; }; //-------------------------------------- // // //-------------------------------------- /** * Retrieves the calorimeter track matching the seqno-th tracker stored track. * (If seqno = -1 retrieves the self-trigger calorimeter track) */ CaloTrkVar *PamLevel2::GetCaloStoredTrack(int seqno){ if( CaloLevel2::ntrk()==0 ){ cout << "PamLevel2::GetCaloStoredTrack(int) : requested tracker SeqNo "<< seqno <<" but no Calorimeter tracks are stored"<trkseqno && it_calo < CaloLevel2::ntrk()); if(!c || seqno != c->trkseqno){ c = 0; if(seqno!=-1)cout << "PamLevel2::GetCaloStoredTrack(int) : requested tracker SeqNo "<< seqno <<" does not match Calorimeter stored tracks"<trkseqno && it_tof < ToFLevel2::ntrk()); if(!c || seqno != c->trkseqno){ c = 0; if(seqno!=-1)cout << "PamLevel2::GetToFStoredTrack(int) : requested tracker SeqNo "<< seqno <<" does not match ToF stored tracks"<GetSeqNo()); if(TOF) o = GetToFStoredTrack(t->GetSeqNo()); // if(t && c && o)track = new PamTrack(t,c,o); PamTrack *track = new PamTrack(t,c,o); return track; }; //-------------------------------------- // // //-------------------------------------- /** * Retrieves the it-th stored track. * It override TrkLevel2::GetTrack(int it). * @param itrk Track number, ranging from 0 to GetNTracks(). */ PamTrack* PamLevel2::GetStoredTrack(Int_t itrk){ PamTrack *track = 0; if( itrk >=0 && itrk < TrkLevel2::ntrk() ){ TrkTrack *t = TrkLevel2::GetStoredTrack(itrk); track = GetPamTrackAlong(t); }else{ cout << "PamLevel2::GetStoredTrack(int) : tracker track SeqNo "<< itrk <<" does not exist (GetNTracks() = "<Delete(); //temporaneo??? // 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( !TRK2 ){ // cout << "SortTracks() : without tracker does not work!!! (not yet)" << endl; return; }; // cout << "use_CAL "<HasImage()){ TrkTrack *ti = TrkLevel2::GetTrackImage(i); //tracker (image) CaloTrkVar *ci = 0; ToFTrkVar *oi = 0; // cout << "its image "< 15 && //no. of fit planes on Y view varcfit[1] < 1000. && //fit variance on Y view true){ cp = GetCaloStoredTrack(tp->GetSeqNo()); ci = GetCaloStoredTrack(ti->GetSeqNo()); Float_t resy_p = cp->tbar[0][1] - cbar[0][1]; if(resy_p < 0)resy_p= - resy_p; Float_t resy_i = ci->tbar[0][1] - cbar[0][1]; if(resy_i < 0)resy_i= - resy_i; if(resy_p <= resy_i) tp_score++; else ti_score++; // cout << "CALO "<GetSeqNo()); oi = GetToFStoredTrack(ti->GetSeqNo()); /* 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 = 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 = GetPlaneIndex( (oi->pmtadc).At(ih) ); if(pl == 1 || pl == 2 || pl == 5)nphit_i++; }; 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 "< ti_score) ts = tp;//the track sorted by the tracker!! else if (tp_score < ti_score) ts = ti;//its image!! else { ts = tp; // cout << "Warning - track image ambiguity not solved" << endl; // cout << ts->GetNtot() << " "<< ts->chi2 << " " << npcfit[1] << " "<< nphit_p << endl; }; }else{ ts = tp; }; // cout <<" SortTracks() "<Add(ts);//save the track in the sorted array // cout << "SortTracks:: sorted_tracks->Add(it) "<=0 && it < TrkLevel2::GetNTracks() && itGetEntriesFast() ){ TrkTrack *t = (TrkTrack*)sorted_tracks->At(it); track = GetPamTrackAlong(t); }else{ cout << "PamLevel2::GetTrack(int) : tracker track SeqNo "<< it <<" does not exist (GetNTracks() = "<=0 && it < TrkLevel2::GetNTracks() ){ TrkTrack *temp = (TrkTrack*)sorted_tracks->At(it); if( temp->HasImage() ){ TrkTrack *t = TrkLevel2::GetStoredTrack(temp->GetImageSeqNo()); image = GetPamTrackAlong(t); }else{ cout <<"PamLevel2::GetTrackImage(int) : Track SeqNo "<GetName(); if(!CheckLevel2File(fname))return NULL; UInt_t *found=0; // Tracker TTree *T = (TTree*)f->Get("Tracker"); if(T && (TRK2||TRK1||TRKh)) { if(TRK2)T->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2")); else T->SetBranchStatus("TrkLevel2",0,found); if(TRK2)cout << "Tracker : set branch address TrkLevel2"<SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1")); else T->SetBranchStatus("TrkLevel1",0,found); if(TRK1)cout << "Tracker : set branch address TrkLevel1"<SetBranchAddress("TrkHough", GetPointerTo("TrkHough")); else T->SetBranchStatus("TrkHough",0,found); if(TRKh)cout << "Tracker : set branch address TrkHough"<AddFriend(T); }else{ cout << "Tracker : missing tree"<Get("Calorimeter"); if(C && (CAL2||CAL1)) { if(CAL2)C->SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2")); else C->SetBranchStatus("CaloLevel2",0,found); if(CAL2)cout << "Calorimeter : set branch address CaloLevel2"<SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1")); else C->SetBranchStatus("CaloLevel1",0,found); if(CAL1)cout << "Calorimeter : set branch address CaloLevel1"<AddFriend(C); }else{ cout << "Calorimeter : missing tree"<Get("ToF"); if(O && TOF) { O->SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2")); cout << "ToF : set branch address ToFLevel2"<AddFriend(O); }else{ cout << "ToF : missing tree"<Get("Trigger"); if(R && TRG) { R->SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2")); cout << "Trigger : set branch address TrigLevel2"<AddFriend(R); }else{ cout << "Trigger : missing tree"<Get("S4"); if(S && S4) { S->SetBranchAddress("S4Level2", GetPointerTo("S4Level2")); cout << "S4 : set branch address S4Level2"<AddFriend(S); }else{ cout << "S4 : missing tree"<Get("NeutronD"); if(N && ND) { N->SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2")); cout << "NeutronD : set branch address NDLevel2"<AddFriend(N); }else{ cout << "NeutronD : missing tree"<Get("Anticounter"); if(A && AC) { A->SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2")); cout << "Anticounter : set branch address AcLevel2"<AddFriend(A); }else{ cout << "Anticounter : missing tree"<Get("OrbitalInfo"); if(B && ORB) { B->SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo")); cout << "OrbitalInfo : set branch address OrbitalInfo"<AddFriend(B); }else{ cout << "OrbitalInfo : missing tree"<GetEntries()<WorkingDirectory(); if(ddir=="")ddir = wdir; // TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir); cout << "Level2 data directory : "<< ddir << endl; TList *contents = new TList; // create output list contents->SetOwner(); char *fullpath; // if no input file list is given: if ( flisttxt != "" ){ if( !gSystem->IsFileInIncludePath(flisttxt,&fullpath) ){ cout <<"File "<ConcatFileName(gSystem->DirName(flisttxt),gSystem->BaseName(flisttxt)); flisttxt = fullpath; if( !gSystem->ChangeDirectory(ddir) ){ cout << "Cannot change directory : "<> file; if (!in.good()) break; line++; // cout <<"(1) " << file << endl; if(file.IsNull()){ cout << "-- list interrupted at line "<IsFileInIncludePath(file,&fullpath) ){ contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath)));// add file to the list }else{ // if(file.Data()!="")cout << "File: "< missing "<< endl; }; }; in.close(); }else{ cout << "No input file list given."<WorkingDirectory()<< endl; TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(ddir),ddir); TList *temp = datadir->GetListOfFiles(); // temp->Print(); // cout << "*************************************" << endl; TIter next(temp); TSystemFile *questo = 0; while ( (questo = (TSystemFile*) next()) ) { TString name = questo-> GetName(); if( name.EndsWith(".root") ){ char *fullpath; gSystem->IsFileInIncludePath(name,&fullpath); contents->Add(new TSystemFile(fullpath,gSystem->DirName(fullpath))); }; } delete temp; delete datadir; }; gSystem->ChangeDirectory(wdir); // back to the working directory // cout << endl << "Selected files:" << endl; // contents->Print(); cout << contents->GetEntries()<<" files selected\n"; // cout << endl; // cout << "Working directory: "<< gSystem->WorkingDirectory()<< endl; return contents; }; //-------------------------------------- // // //-------------------------------------- /** * Get the Pamela detector chains from a list of files and make them friends. * @param fl Pointer to a TList of TSystemFiles * @param detlist String to select trees to be included * @return Pointer to a TChain */ TChain *PamLevel2::GetPamTree(TList *fl, TString detlist ){ TChain *Trout =0; if( !detlist.IsNull() )SetWhichTrees(detlist); TChain *T = 0; TChain *C = 0; TChain *O = 0; TChain *R = 0; TChain *S = 0; TChain *N = 0; TChain *A = 0; TChain *B = 0; if(TRK2||TRK1||TRKh) T = new TChain("Tracker"); if(CAL2||CAL1) C = new TChain("Calorimeter"); if(TOF) O = new TChain("ToF"); if(TRG) R = new TChain("Trigger"); if(S4) S = new TChain("S4"); if(ND) N = new TChain("NeutronD"); if(AC) A = new TChain("Anticounter"); if(ORB) B = new TChain("OrbitalInfo"); // loop over files and create chains TIter next(fl); TSystemFile *questo = 0; while ( (questo = (TSystemFile*) next()) ) { TString name = questo->GetName(); // cout << "File: "<< name << endl; if( CheckLevel2File(name) ){ if(TRK2||TRK1||TRKh) T->Add(name); if(CAL1||CAL2) C->Add(name); if(TOF) O->Add(name); if(TRG) R->Add(name); if(S4) S->Add(name); if(ND) N->Add(name); if(AC) A->Add(name); if(ORB) B->Add(name); }; } cout << "done chain \n"; UInt_t *found=0; // Tracker if(T && (TRK2||TRK1||TRKh)) { if(TRK2)T->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2")); else T->SetBranchStatus("TrkLevel2",0,found); if(TRK2)cout << "Tracker : set branch address TrkLevel2"<SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1")); else T->SetBranchStatus("TrkLevel1",0,found); if(TRK1)cout << "Tracker : set branch address TrkLevel1"<SetBranchAddress("TrkHough", GetPointerTo("TrkHough")); else T->SetBranchStatus("TrkHough",0,found); if(TRKh)cout << "Tracker : set branch address TrkHough"<AddFriend("Tracker"); }else{ cout << "Tracker : missing tree"<SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2")); else C->SetBranchStatus("CaloLevel2",0,found); if(CAL2)cout << "Calorimeter : set branch address CaloLevel2"<SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1")); else C->SetBranchStatus("CaloLevel1",0,found); if(CAL1)cout << "Calorimeter : set branch address CaloLevel1"<AddFriend("Calorimeter"); }else{ cout << "Calorimeter : missing tree"<SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2")); cout << "ToF : set branch address ToFLevel2"<AddFriend("ToF"); }else{ cout << "ToF : missing tree"<SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2")); cout << "Trigger : set branch address TrigLevel2"<AddFriend("Trigger"); }else{ cout << "Trigger : missing tree"<SetBranchAddress("S4Level2", GetPointerTo("S4Level2")); cout << "S4 : set branch address S4Level2"<AddFriend("S4"); }else{ cout << "S4 : missing tree"<SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2")); cout << "NeutronD : set branch address NDLevel2"<AddFriend("NeutronD"); }else{ cout << "NeutronD : missing tree"<SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2")); cout << "Anticounter : set branch address AcLevel2"<AddFriend("Anticounter"); }else{ cout << "Anticounter : missing tree"<SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo")); cout << "OrbitalInfo : set branch address OrbitalInfo"<AddFriend("OrbitalInfo"); }else{ cout << "OrbitalInfo : missing tree"<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 ); return Trout; } //-------------------------------------- // // //-------------------------------------- /** * Set branch addresses for Pamela friend trees */ void PamLevel2::SetBranchAddress(TTree *t){ TRK2 = TRK2 & t->GetBranchStatus("TrkLevel2"); TRK1 = TRK1 & t->GetBranchStatus("TrkLevel1"); TRKh = TRKh & t->GetBranchStatus("TrkHough"); CAL2 = CAL2 & t->GetBranchStatus("CaloLevel2"); CAL1 = CAL1 & t->GetBranchStatus("CaloLevel1"); TOF = TOF & t->GetBranchStatus("ToFLevel2"); TRG = TRG & t->GetBranchStatus("TrigLevel2"); S4 = S4 & t->GetBranchStatus("S4Level2"); ND = ND & t->GetBranchStatus("NDLevel2"); AC = AC & t->GetBranchStatus("AcLevel2"); ORB = ORB & t->GetBranchStatus("OrbitalInfo"); // Tracker if(TRK1) { t->SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel2")); cout << "Tracker : set branch address TrkLevel1"<SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel1")); cout << "Tracker : set branch address TrkLevel2"<SetBranchAddress("TrkHough", GetPointerTo("TrkHough")); cout << "Tracker : set branch address TrkHough"<SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1")); cout << "Calorimeter : set branch address CaloLevel1"<SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2")); cout << "Calorimeter : set branch address CaloLevel2"<SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2")); cout << "ToF : set branch address ToFLevel2"<SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2")); cout << "Trigger : set branch address TrigLevel2"<SetBranchAddress("S4Level2", GetPointerTo("S4Level2")); cout << "S4 : set branch address S4Level2"<SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2")); cout << "NeutronD : set branch address NDLevel2"<SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2")); cout << "Anticounter : set branch address AcLevel2"<SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo")); cout << "OrbitalInfo : set branch address OrbitalInfo"<GetBranchStatus("TrkLevel2"); TRK1 = TRK1 & t->GetBranchStatus("TrkLevel1"); TRKh = TRKh & t->GetBranchStatus("TrkHough"); CAL1 = CAL1 & t->GetBranchStatus("CaloLevel1"); CAL2 = CAL2 & t->GetBranchStatus("CaloLevel2"); TOF = TOF & t->GetBranchStatus("ToFLevel2"); TRG = TRG & t->GetBranchStatus("TrigLevel2"); S4 = S4 & t->GetBranchStatus("S4Level2"); ND = ND & t->GetBranchStatus("NDLevel2"); AC = AC & t->GetBranchStatus("AcLevel2"); ORB = ORB & t->GetBranchStatus("OrbitalInfo"); // Tracker if(TRK2) { t->SetBranchAddress("TrkLevel2", GetPointerTo("TrkLevel2")); cout << "Tracker : set branch address TrkLevel2"<SetBranchAddress("TrkLevel1", GetPointerTo("TrkLevel1")); cout << "Tracker : set branch address TrkLevel1"<SetBranchAddress("TrkHough", GetPointerTo("TrkHough")); cout << "Tracker : set branch address TrkHough"<SetBranchAddress("CaloLevel2", GetPointerTo("CaloLevel2")); cout << "Calorimeter : set branch address CaloLevel2"<SetBranchAddress("CaloLevel1", GetPointerTo("CaloLevel1")); cout << "Calorimeter : set branch address CaloLevel1"<SetBranchAddress("ToFLevel2", GetPointerTo("ToFLevel2")); cout << "ToF : set branch address ToFLevel2"<SetBranchAddress("TrigLevel2", GetPointerTo("TrigLevel2")); cout << "Trigger : set branch address TrigLevel2"<SetBranchAddress("S4Level2", GetPointerTo("S4Level2")); cout << "S4 : set branch address S4Level2"<SetBranchAddress("NDLevel2", GetPointerTo("NDLevel2")); cout << "NeutronD : set branch address NDLevel2"<SetBranchAddress("AcLevel2", GetPointerTo("AcLevel2")); cout << "Anticounter : set branch address AcLevel2"<SetBranchAddress("OrbitalInfo", GetPointerTo("OrbitalInfo")); cout << "OrbitalInfo : set branch address OrbitalInfo"<GetName(); // cout << "File: "<< name << endl; if( CheckLevel2File(name) ){ R->Add(name); }; } R->SetBranchAddress("RunInfo", GetPointerTo("RunInfo")); cout << "Run : set branch address RunInfo"<Get("Run"); R->SetBranchAddress("RunInfo", GetPointerTo("RunInfo")); cout << "Run : set branch address RunInfo"< "; if(TRK1)cout<<"TRK1 "; if(TRK2)cout<<"TRK2 "; if(TRKh)cout<<"TRKH "; if(CAL1)cout<<"CAL1 "; if(CAL2)cout<<"CAL2 "; if(TOF)cout<<"TOF "; if(TRG)cout<<"TRG "; if(AC)cout<<"AC "; if(ND)cout<<"ND "; if(S4)cout<<"S4 "; if(ORB)cout<<"ORB "; cout << endl; }; /** * Set tree/branch detector flags from the content of a tree */ void PamLevel2::GetWhichTrees(TFile* f){ // ----------- // reset flags // ----------- Bool_t CAL1 = false; Bool_t CAL2 = false; Bool_t TRK2 = false; Bool_t TRK1 = false; Bool_t TRKh = false; Bool_t TRG = false; Bool_t TOF = false; Bool_t S4 = false; Bool_t ND = false; Bool_t AC = false; Bool_t ORB = false; Bool_t RUN = false; cout << "Checking file: "<GetName()<IsZombie() ){ cout << "File: "<< f->GetName() <<" Non valid root file"<< endl; return; } TList *lk = f->GetListOfKeys(); TIter next(lk); TKey *key =0; Int_t nev = 0; while( (key = (TKey*)next()) ){ if( !strcmp(key->GetName(),"Run" ) )RUN = true; //========================================================= if( !strcmp(key->GetName(),"Trigger" ) ){ TRG = true; Int_t nevt = ((TTree*)f->Get("Trigger"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" Trigger tree has "<GetName(),"ToF" ) ){ TOF = true; Int_t nevt = ((TTree*)f->Get("ToF"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" ToF tree has "<GetName(),"S4" ) ){ S4 = true; Int_t nevt = ((TTree*)f->Get("S4"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" S4 tree has "<GetName(),"NeutronD" ) ){ ND = true; Int_t nevt = ((TTree*)f->Get("NeutronD"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<"NeutronD tree has "<GetName(),"Anticounter") ){ AC = true; Int_t nevt = ((TTree*)f->Get("Anticounter"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" Anticounter tree has "<GetName(),"OrbitalInfo") ){ ORB = true; Int_t nevt = ((TTree*)f->Get("OrbitalInfo"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" OrbitalInfo tree has "<GetName(),"Tracker" ) ){ TTree *T = (TTree*)f->Get("Tracker"); for(Int_t i=0; iGetListOfBranches()->GetEntries(); i++){ TString name = T->GetListOfBranches()->At(i)->GetName(); if( !name.CompareTo("TrkLevel1") )TRK1=true; if( !name.CompareTo("TrkLevel2") )TRK2=true; if( !name.CompareTo("TrkHough") )TRKh=true; }; Int_t nevt = T->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" Tracker tree has "<Delete(); }; //========================================================= if( !strcmp(key->GetName(),"Calorimeter" ) ){ TTree *T = (TTree*)f->Get("Calorimeter"); for(Int_t i=0; iGetListOfBranches()->GetEntries(); i++){ TString name = T->GetListOfBranches()->At(i)->GetName(); if( !name.CompareTo("CaloLevel1") )CAL1=true; if( !name.CompareTo("CaloLevel2") )CAL2=true; }; Int_t nevt = T->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" Calorimeter tree has "<Delete(); }; }; lk->Delete(); return ; }; //-------------------------------------- // // //-------------------------------------- /** * Check if a file contains selected Pamela Level2 trees. * @param name File name * @return true if the file is ok. */ Bool_t PamLevel2::CheckLevel2File(TString name){ Bool_t CAL1__ok = false; Bool_t CAL2__ok = false; Bool_t TRK2__ok = false; Bool_t TRK1__ok = false; Bool_t TRKh__ok = false; Bool_t TRG__ok = false; Bool_t TOF__ok = false; Bool_t S4__ok = false; Bool_t ND__ok = false; Bool_t AC__ok = false; Bool_t ORB__ok = false; Bool_t RUN__ok = false; cout << "Checking file: "<IsZombie() ){ cout << "File: "<< f->GetName() <<" discarded ---- Non valid root file"<< endl; return false; } // cout << "Get list of keys: "<GetListOfKeys(); // lk->Print(); TIter next(lk); TKey *key =0; Int_t nev = 0; while( (key = (TKey*)next()) ){ // cout << key->GetName() << endl; // cout << " Get tree: " << f->Get(key->GetName())<GetClassName()=="TTree" && nev_previous && nev != nev_previous ){ // nev = ((TTree*)f->Get(key->GetName()))->GetEntries(); // cout << "File: "<< f->GetName() <<" discarded ---- "<< key->GetName() << " tree: n.entries does not match "<GetName(),"Run" ) )RUN__ok = true; //========================================================= if( !strcmp(key->GetName(),"Trigger" ) ){ TRG__ok = true; if(TRG){ Int_t nevt = ((TTree*)f->Get("Trigger"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" discarded ---- Trigger tree has "<GetName(),"ToF" ) ){ TOF__ok = true; if(TOF){ Int_t nevt = ((TTree*)f->Get("ToF"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" discarded ---- ToF tree has "<GetName(),"S4" ) ){ S4__ok = true; if(S4){ Int_t nevt = ((TTree*)f->Get("S4"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" discarded ---- S4 tree has "<GetName(),"NeutronD" ) ){ ND__ok = true; if(ND){ Int_t nevt = ((TTree*)f->Get("NeutronD"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" discarded ---- NeutronD tree has "<GetName(),"Anticounter") ){ AC__ok = true; if(AC){ Int_t nevt = ((TTree*)f->Get("Anticounter"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" discarded ---- Anticounter tree has "<GetName(),"OrbitalInfo") ){ ORB__ok = true; if(ORB){ Int_t nevt = ((TTree*)f->Get("OrbitalInfo"))->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" discarded ---- OrbitalInfo tree has "<GetName(),"Tracker" ) ){ TTree *T = (TTree*)f->Get("Tracker"); if(TRK1||TRK2||TRKh){ Int_t nevt = T->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" discarded ---- Tracker tree has "<GetListOfBranches()->GetEntries(); i++){ TString name = T->GetListOfBranches()->At(i)->GetName(); if( !name.CompareTo("TrkLevel1") )TRK1__ok=true; if( !name.CompareTo("TrkLevel2") )TRK2__ok=true; if( !name.CompareTo("TrkHough") )TRKh__ok=true; }; T->Delete(); }; //========================================================= if( !strcmp(key->GetName(),"Calorimeter" ) ){ TTree *T = (TTree*)f->Get("Calorimeter"); if(CAL1||CAL2){ Int_t nevt = T->GetEntries(); if( nev && nevt!=nev){ cout << "File: "<< f->GetName() <<" discarded ---- Calorimeter tree has "<GetListOfBranches()->GetEntries(); i++){ TString name = T->GetListOfBranches()->At(i)->GetName(); if( !name.CompareTo("CaloLevel1") )CAL1__ok=true; if( !name.CompareTo("CaloLevel2") )CAL2__ok=true; }; T->Delete(); }; }; if(!RUN__ok) { cout << "File: "<< f->GetName() <<" *WARNING* ---- Missing RunInfo tree"<< endl; // return false; }; if(CAL1 && !CAL1__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing CaloLevel1 branch"<< endl; return false; }; if(CAL2 && !CAL2__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing CaloLevel2 branch"<< endl; return false; }; if(TRK2 && !TRK2__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing TrkLevel2 branch"<< endl; return false; }; if(TRK1 && !TRK1__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing TrkLevel1 branch"<< endl; return false; }; if(TRKh && !TRKh__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing TrkHough branch"<< endl; return false; }; if(ORB && !ORB__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing ORB tree"<< endl; return false; }; if(AC && !AC__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing AC tree"<< endl; return false; }; if(S4 && !S4__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing S4 tree"<< endl; return false; }; if(TOF && !TOF__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing ToF tree"<< endl; return false; }; if(ND && !ND__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing ND tree"<< endl; return false; }; if(TRG && !TRG__ok){ cout << "File: "<< f->GetName() <<" discarded ---- Missing Trigger tree"<< endl; return false; }; lk->Delete(); f->Close(); return true; }; /** * Create clone-trees */ void PamLevel2::CreateCloneTrees0( TChain *fChain, TFile *ofile ){ cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <GetTree()->CloneTree(0); TString name = tree_clone[i]->GetName(); name.Append("_clone"); // tree_clone[i]->SetName(name.Data()); cout << tree_clone[i]->GetName() <GetListOfFriends(); TIter next(li); TFriendElement* T_friend=0; ofile->cd(); 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(); name.Append("_clone"); // tree_clone[i]->SetName(name.Data()); cout << tree_clone[i]->GetName() << endl; i++; } cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <cd(); cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <Branch("TrkLevel1","TrkLevel1", GetPointerTo("TrkLevel1")); tree_clone[i]->BranchRef(); cout << "Tracker : branch TrkLevel1"<Branch("TrkLevel2", "TrkLevel2",GetPointerTo("TrkLevel2")); cout << "Tracker : branch TrkLevel2"<Branch("TrkHough","TrkHough", GetPointerTo("TrkHough")); cout << "Tracker : branch TrkHough"<Branch("CaloLevel1", "CaloLevel1", GetPointerTo("CaloLevel1")); cout << "Calorimeter : branch CaloLevel1"<Branch("CaloLevel2","CaloLevel2", GetPointerTo("CaloLevel2")); cout << "Calorimeter : branch CaloLevel2"<Branch("ToFLevel2","ToFLevel2", GetPointerTo("ToFLevel2")); cout << "ToF : branch ToFLevel2"<Branch("TrigLevel2","TrigLevel2", GetPointerTo("TrigLevel2")); cout << "Trigger : branch TrigLevel2"<Branch("S4Level2","S4Level2", GetPointerTo("S4Level2")); cout << "S4 : branch S4Level2"<Branch("NDLevel2","NDLevel2", GetPointerTo("NDLevel2")); cout << "NeutronD : branch NDLevel2"<Branch("AcLevel2","AcLevel2", GetPointerTo("AcLevel2")); cout << "Anticounter : branch AcLevel2"<Branch("OrbitalInfo","OrbitalInfo", GetPointerTo("OrbitalInfo")); cout << "OrbitalInfo : branch OrbitalInfo"<Branch("TrkLevel1","TrkLevel1", &trk1_clone); // T_clone->BranchRef(); // cout << "Tracker : branch TrkLevel1"<Branch("TrkLevel2", "TrkLevel2",&trk2_clone); // cout << "Tracker : branch TrkLevel2"<Branch("TrkHough","TrkHough", &trkh_clone); // cout << "Tracker : branch TrkHough"<Branch("CaloLevel1", "CaloLevel1", &calo1_clone); // cout << "Calorimeter : branch CaloLevel1"<Branch("CaloLevel2","CaloLevel2", &calo2_clone); // cout << "Calorimeter : branch CaloLevel2"<Branch("ToFLevel2","ToFLevel2", &tof_clone); // cout << "ToF : branch ToFLevel2"<Branch("TrigLevel2","TrigLevel2", &trig_clone); // cout << "Trigger : branch TrigLevel2"<Branch("S4Level2","S4Level2", &s4_clone); // cout << "S4 : branch S4Level2"<Branch("NDLevel2","NDLevel2", &nd_clone); // cout << "NeutronD : branch NDLevel2"<Branch("AcLevel2","AcLevel2", &ac_clone); // cout << "Anticounter : branch AcLevel2"<Branch("OrbitalInfo","OrbitalInfo", &orb_clone); // cout << "OrbitalInfo : branch OrbitalInfo"<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; // if(T_clone)T_clone->Fill(); // if(C_clone)C_clone->Fill(); // if(O_clone)O_clone->Fill(); // if(R_clone)R_clone->Fill(); // if(S_clone)S_clone->Fill(); // if(N_clone)N_clone->Fill(); // if(A_clone)A_clone->Fill(); // if(O_clone)O_clone->Fill(); for(Int_t i=0; i<8; i++){ if(tree_clone[i])tree_clone[i]->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]; }; } return NULL; } void PamLevel2::WriteCloneTrees(){ cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <GetName()<Write(); }; } cout << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <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 << "+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+" <SetDirectory(0); // return Tout; // } // /** // * Fill a tree (created with GetNewPamTree) // * // */ // //void PamLevel2::FillNewPamTree(TTree *T){ // void PamLevel2::FillNewPamTree(){ // 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 // } // }