X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=ANALYSIS%2FAliD0toKpiTest.C;h=83a93f3c261f20da3c30ad2d7219414e895dd94a;hb=12856ea67190ac77205394fad3a38dff72fca090;hp=5cb127ebb50bc48221e9c0a92aec3dae8b495e8c;hpb=5e653232c5b61e0d179e57da526b75be8649a26c;p=u%2Fmrichter%2FAliRoot.git diff --git a/ANALYSIS/AliD0toKpiTest.C b/ANALYSIS/AliD0toKpiTest.C index 5cb127ebb50..83a93f3c261 100644 --- a/ANALYSIS/AliD0toKpiTest.C +++ b/ANALYSIS/AliD0toKpiTest.C @@ -1,37 +1,45 @@ //-------------------------------------------------------------------------- // Test macro for reconstruction and analysis of D0->Kpi // -// Andrea Dainese, andrea.dainese@pd.infn.it +// Andrea Dainese, andrea.dainese@lnl.infn.it //-------------------------------------------------------------------------- void AliD0toKpiReco() { + gSystem->Load("libANALYSIS.so"); + //============== R E C O N S T R U C T I O N ============================== - // Look for field value in galice.root - Double_t field = 0.4; + Int_t evFirst = 0; + Int_t evLast = 1000000; + + // Get field from galice.root if (gAlice) { delete gAlice->GetRunLoader(); delete gAlice; gAlice=0; + } + AliRunLoader *rl = AliRunLoader::Open("galice.root"); + if (rl == 0x0) { + cerr<<"Can not open session"<AccessPathName("galice.root",kFileExists)) { - AliRunLoader *rl = AliRunLoader::Open("galice.root"); - rl->LoadgAlice(); - field=(Double_t)(gAlice->Field()->SolenoidField())/10.; - printf(" B = %3.1f T read from gAlice and set\n",field); - delete gAlice->GetRunLoader(); - delete gAlice; - gAlice=0; - } else { - printf(" File galice.root not found: default %3.1f T being used!\n",field); + Int_t retval = rl->LoadgAlice(); + if (retval) { + cerr<<"LoadgAlice returned error"<GetAliRun(); + AliMagF *fiel = (AliMagF*)gAlice->Field(); + // Set the conversion constant between curvature and Pt + AliTracker::SetFieldMap(fiel,kTRUE); AliD0toKpiAnalysis *analysis = new AliD0toKpiAnalysis(); - //--- set magnetic field - analysis->SetBz(field); // set simulation to take info on PDG codes from kine tree - //analysis->SetSimulation(); + analysis->SetSimulation(); + rl->LoadKinematics(); + analysis->MakeTracksRefFile(gAlice,evFirst,evLast); //--- set this is you want only signal candidates in output file //analysis->SetOnlySignal(); //--- set this if you want to compute primary vertex D0 by D0 using @@ -41,21 +49,17 @@ void AliD0toKpiReco() { //analysis->SetVertexOnTheFly(); //analysis->SetMassCut(0.1); // GeV //--- set single-track preselections - analysis->SetPtCut(0.5); // GeV - analysis->Setd0Cut(50.); // micron + analysis->SetPtCut(0.); // GeV + analysis->Setd0Cut(0.); // micron //--- set cuts on D0 candidates to be written to file // (see AliD0toKpiAnalysis.h for a description and for the defaults) - analysis->SetD0Cuts(0.1,1000.,1.1,0.,0.,10000.,10000.,0.,.5); - //analysis->SetD0Cuts(); + //analysis->SetD0Cuts(0.1,1000.,1.1,0.,0.,10000.,10000.,0.,.5); + analysis->SetD0Cuts(); //--- check the settings analysis->PrintStatus(); - Int_t evFirst = 0; - Int_t evLast = 1000000; - //analysis->SetDebug(); - //analysis->FindCandidates(evFirst,evLast,"AliD0toKpi.root"); - analysis->FindCandidatesESD(evFirst,evLast,"AliD0toKpi.root"); + analysis->FindCandidates(evFirst,evLast,"AliD0toKpi.root"); delete analysis; return; @@ -63,6 +67,8 @@ void AliD0toKpiReco() { //========================================================================== void AliD0toKpiSele() { + gSystem->Load("libANALYSIS.so"); + //======================== S E L E C T I O N ============================ AliD0toKpiAnalysis *analysis = new AliD0toKpiAnalysis();