ROOT logo
AliAnalysisVertexingHF* ConfigVertexingHF() {

  printf("MYCONFIGPID Call to AliAnalysisVertexingHF parameters setting :\n");
  vHF = new AliAnalysisVertexingHF();
 
  //--- switch-off candidates finding (default: all on)
  //vHF->SetD0toKpiOff();
  vHF->SetD0toKpiOn();
  vHF->SetJPSItoEleOff();
  //vHF->Set3ProngOff();
  //vHF->SetLikeSignOn(); // like-sign pairs and triplets
  //  vHF->SetLikeSign3prongOff();
  vHF->Set4ProngOff();
  vHF->SetDstarOff();
  vHF->SetFindVertexForDstar(kFALSE);
  //--- secondary vertex with KF?
  //vHF->SetSecVtxWithKF();
  //Cascade
  vHF->SetCascadesOn();                 
  vHF->SetFindVertexForCascades(kTRUE); 
  vHF->SetV0TypeForCascadeVertex(AliRDHFCuts::kOnlyOfflineV0s); //All V0s 0, Offline 1, OnTheFly 2
  vHF->SetUseProtonPIDforLambdaC2V0();

  vHF->SetMassCutBeforeVertexing(kTRUE); // PbPb

  //set PID
  vHF->SetUseKaonPIDfor3Prong(kTRUE);
  vHF->SetUseProtonAndPionPIDforLambdaC();
  vHF->SetnSigmaTOFforKaonSel(3., 5.);
  vHF->SetnSigmaTPCforKaonSel(5., 5.);
  vHF->SetnSigmaTOFforProtonSel(3.,5.);
  vHF->SetnSigmaTPCforProtonSel(5., 5.);
  vHF->SetnSigmaTPCforPionSel(4., 4.);
  vHF->SetnSigmaTOFforPionSel(40.,40.);
  vHF->SetMaxMomForTPCPid(9999999999.);
  vHF->SetUseTPCPID(kTRUE);
  vHF->SetUseTOFPID(kTRUE);
  vHF->SetUseTPCPIDOnlyIfNoTOF(kTRUE);
  
//--- set cuts for single-track selection  
  //     displaced tracks
  AliESDtrackCuts *esdTrackCuts = new AliESDtrackCuts("AliESDtrackCuts","default");
  esdTrackCuts->SetRequireTPCRefit(kTRUE);
  esdTrackCuts->SetMinNClustersTPC(70);
  esdTrackCuts->SetRequireITSRefit(kTRUE);
  //esdTrackCuts->SetMinNClustersITS(4);
  esdTrackCuts->SetClusterRequirementITS(AliESDtrackCuts::kSPD,
					 AliESDtrackCuts::kAny);
  // |d0|>30 micron for pt<2GeV, no cut above 2
  esdTrackCuts->SetMinDCAToVertexXYPtDep("0.003*TMath::Max(0.,(1-TMath::Floor(TMath::Abs(pt)/2.)))");
  esdTrackCuts->SetMaxDCAToVertexXY(1.);  
  esdTrackCuts->SetMaxDCAToVertexZ(1.);
  esdTrackCuts->SetPtRange(0.4,1.e10);
  esdTrackCuts->SetEtaRange(-0.8,+0.8);
  AliAnalysisFilter *trkFilter = new AliAnalysisFilter("trackFilter");
  trkFilter->AddCuts(esdTrackCuts);
  vHF->SetTrackFilter(trkFilter);
  //     D* soft pion tracks
  AliESDtrackCuts *esdTrackCutsSoftPi = new AliESDtrackCuts("AliESDtrackCuts","default");
  esdTrackCutsSoftPi->SetMinNClustersITS(4);
  esdTrackCutsSoftPi->SetMaxDCAToVertexXY(1.);  
  esdTrackCutsSoftPi->SetMaxDCAToVertexZ(1.);
  esdTrackCutsSoftPi->SetPtRange(0.2,1.e10);
  esdTrackCutsSoftPi->SetEtaRange(-0.8,+0.8);
  AliAnalysisFilter *trkFilterSoftPi = new AliAnalysisFilter("trackFilterSoftPi");
  trkFilterSoftPi->AddCuts(esdTrackCutsSoftPi);
  vHF->SetTrackFilterSoftPi(trkFilterSoftPi);
  //--- set cuts for candidates selection
  Int_t nptbins=2; Float_t ptlimits[2]={0.,1000000.};
  AliRDHFCutsD0toKpi *cutsD0toKpi = new AliRDHFCutsD0toKpi("CutsD0toKpi");
  cutsD0toKpi->SetStandardCutsPbPb2010();
  cutsD0toKpi->SetMinCentrality(-10);
  cutsD0toKpi->SetMaxCentrality(110);
  cutsD0toKpi->SetUseSpecialCuts(kFALSE);
  cutsD0toKpi->SetMinPtCandidate(0.);
  cutsD0toKpi->SetUsePID(kFALSE);
  cutsD0toKpi->SetUsePhysicsSelection(kFALSE);
  cutsD0toKpi->SetMaxVtxZ(1.e6);
  cutsD0toKpi->SetTriggerClass("");
  Float_t cutsArrayD0toKpi[11]={0.4,999999.,1.1,0.,0.,999999.,999999.,0.,0.5,-1,0.};
  cutsD0toKpi->SetPtBins(nptbins,ptlimits);
  cutsD0toKpi->SetCuts(11,cutsArrayD0toKpi);
  cutsD0toKpi->AddTrackCuts(esdTrackCuts);
  vHF->SetCutsD0toKpi(cutsD0toKpi);
  AliRDHFCutsJpsitoee *cutsJpsitoee = new AliRDHFCutsJpsitoee("CutsJpsitoee");
  Float_t cutsArrayJpsitoee[9]={0.350,100000.,1.1,0.,0.,100000.,100000.,100000000.,-1.1};
  cutsJpsitoee->SetCuts(9,cutsArrayJpsitoee);
  cutsJpsitoee->AddTrackCuts(esdTrackCuts);
  vHF->SetCutsJpsitoee(cutsJpsitoee);
  AliRDHFCutsDplustoKpipi *cutsDplustoKpipi = new AliRDHFCutsDplustoKpipi("CutsDplustoKpipi");
  cutsDplustoKpipi->SetStandardCutsPbPb2010();
  cutsDplustoKpipi->SetUsePID(kFALSE);
  Float_t cutsArrayDplustoKpipi[14]={0.,0.3,0.3,0.,0.,0.01,0.05,0.05,0.,0.88,0.,10000000000.,0.,-1.};
  cutsDplustoKpipi->SetPtBins(nptbins,ptlimits);
  cutsDplustoKpipi->SetCuts(14,cutsArrayDplustoKpipi);
  cutsDplustoKpipi->AddTrackCuts(esdTrackCuts);
  cutsDplustoKpipi->SetMinPtCandidate(2000000000.);
  vHF->SetCutsDplustoKpipi(cutsDplustoKpipi);
  AliRDHFCutsDstoKKpi *cutsDstoKKpi = new AliRDHFCutsDstoKKpi("CutsDstoKKpi");
  cutsDstoKKpi->SetStandardCutsPbPb2010();
  cutsDstoKKpi->SetUsePID(kFALSE);
  Float_t cutsArrayDstoKKpi[20]={0.,0.3,0.3,0.,0.,0.005,0.06,0.,0.,0.9,0.,100000.,0.035,0.0001,-1.,1.,0.,0.,0.,-1.};
  cutsDstoKKpi->SetPtBins(nptbins,ptlimits);
  cutsDstoKKpi->SetCuts(20,cutsArrayDstoKKpi);
  cutsDstoKKpi->AddTrackCuts(esdTrackCuts);
  cutsDstoKKpi->SetMinPtCandidate(1000000000.);
  vHF->SetCutsDstoKKpi(cutsDstoKKpi);
  AliRDHFCutsLctopKpi *cutsLctopKpi = new AliRDHFCutsLctopKpi("CutsLctopKpi");
  cutsLctopKpi->SetStandardCutsPbPb2010();
  cutsLctopKpi->SetUsePID(kFALSE);
  Float_t cutsArrayLctopKpi[13]={0.13,0.4,0.4,0.,0.,0.,0.06,0.,0.,0.,0.,0.05,0.4};
  cutsLctopKpi->SetPtBins(nptbins,ptlimits);
  cutsLctopKpi->SetCuts(13,cutsArrayLctopKpi);
  cutsLctopKpi->AddTrackCuts(esdTrackCuts);
  cutsLctopKpi->SetMinPtCandidate(2.);
  vHF->SetCutsLctopKpi(cutsLctopKpi);
  AliRDHFCutsD0toKpipipi *cutsD0toKpipipi = new AliRDHFCutsD0toKpipipi("CutsD0toKpipipi");
  Float_t cutsArrayD0toKpipipi[9]={0.2,0.04,0.00,0.01,0.02,0.8,0.,0.1,0.};
  cutsD0toKpipipi->SetCuts(9,cutsArrayD0toKpipipi);
  cutsD0toKpipipi->AddTrackCuts(esdTrackCuts);
  vHF->SetCutsD0toKpipipi(cutsD0toKpipipi);


 // D* pt dependent cuts ------------------------------------------

  AliRDHFCutsDStartoKpipi *cutsDStartoKpipi = new AliRDHFCutsDStartoKpipi("CutsDStartoKpipi");
  cutsDStartoKpipi->SetUsePID(kFALSE);
  
  const Int_t nvars=16;
  const Int_t nptbins=2;
  
  Float_t* ptbins;
  ptbins=new Float_t[nptbins+1];
  ptbins[0]=0.;
  ptbins[1]=5.;
  ptbins[2]=999.;
  
  cutsDStartoKpipi->SetPtBins(nptbins+1,ptbins);
  
  Float_t** rdcutsvalmine;
  rdcutsvalmine=new Float_t*[nvars];
  for(Int_t iv=0;iv<nvars;iv++){
    rdcutsvalmine[iv]=new Float_t[nptbins];
  }
  //0-5
  rdcutsvalmine[0][0]=0.10;  //D0 inv mass window
  rdcutsvalmine[1][0]=0.06;   // dca
  rdcutsvalmine[2][0]=0.9;    // thetastar
  rdcutsvalmine[3][0]=0.5;    // pt Pion
  rdcutsvalmine[4][0]=0.5;    // Pt Kaon
  rdcutsvalmine[5][0]=0.1;    // d0K
  rdcutsvalmine[6][0]=0.1;    // d0Pi
  rdcutsvalmine[7][0]=0.0001; // d0xd0
  rdcutsvalmine[8][0]=0.8;    // costhetapoint
  rdcutsvalmine[9][0]=0.15;   // Dstar inv mass window
  rdcutsvalmine[10][0]=0.03;  // half width of (M_Kpipi-M_D0)
  rdcutsvalmine[11][0]=0.1;   // Pt min of Pi soft
  rdcutsvalmine[12][0]=100.;  // Pt max of pi soft
  rdcutsvalmine[13][0]=9999.; // theta
  rdcutsvalmine[14][0]=0.9;   // |cosThetaPointXY|
  rdcutsvalmine[15][0]=1.;    // NormDecayLenghtXY
 //5-999
  rdcutsvalmine[0][1]=0.10;   //D0 inv mass window
  rdcutsvalmine[1][1]=0.06;   // dca
  rdcutsvalmine[2][1]=0.9;    // thetastar
  rdcutsvalmine[3][1]=0.5;    // pt Pion
  rdcutsvalmine[4][1]=0.5;    // Pt Kaon
  rdcutsvalmine[5][1]=0.1;    // d0K
  rdcutsvalmine[6][1]=0.1;    // d0Pi
  rdcutsvalmine[7][1]=0.0001; // d0xd0
  rdcutsvalmine[8][1]=0.7;    // costhetapoint
  rdcutsvalmine[9][1]=0.15;   // Dstar inv mass window
  rdcutsvalmine[10][1]=0.03;  // half width of (M_Kpipi-M_D0)
  rdcutsvalmine[11][1]=0.1;   // Pt min of Pi soft
  rdcutsvalmine[12][1]=100.;  // Pt max of pi soft
  rdcutsvalmine[13][1]=9999.; // theta
  rdcutsvalmine[14][1]=0.8;   // |cosThetaPointXY|
  rdcutsvalmine[15][1]=0.;    // NormDecayLenghtXY

  cutsDStartoKpipi->SetCuts(nvars,nptbins,rdcutsvalmine);
 
  cutsDStartoKpipi->AddTrackCuts(esdTrackCuts);
  cutsDStartoKpipi->AddTrackCutsSoftPi(esdTrackCutsSoftPi);
  cutsDStartoKpipi->SetMinPtCandidate(2.);
  vHF->SetCutsDStartoKpipi(cutsDStartoKpipi);

  //--------------------------------------------------------

  AliRDHFCutsLctoV0 *cutsLctoV0 = new AliRDHFCutsLctoV0("CutsLctoV0");
  /*
  Float_t cutsArrayLctoV0[9]={4.0,4.0,2.0,2.0,0.0,0.0,0.0,1000.,1000.};
  cutsLctoV0->SetCuts(9,cutsArrayLctoV0);
  */
  //last dummy
  Float_t cutsArrayLctoV0[10]={4.0,4.0,2.0,2.0,0.0,0.0,0.0,1000.,1000.,1.};
  cutsLctoV0->SetCuts(10,cutsArrayLctoV0);
  cutsLctoV0->AddTrackCuts(esdTrackCuts);
  vHF->SetCutsLctoV0(cutsLctoV0);
  // 
  //--- set this if you want to reconstruct primary vertex candidate by
  //    candidate using other tracks in the event (for pp, broad 
  //    interaction region)
  //vHF->SetRecoPrimVtxSkippingTrks();
  //--- OR set this if you want to remove the candidate daughters from 
  //    the primary vertex, without recostructing it from scratch
  //vHF->SetRmTrksFromPrimVtx();

  //--- check the settings
  vHF->PrintStatus();
  //--- verbose
  //  AliLog::SetClassDebugLevel("AliAnalysisVertexingHF",2);

 
  return vHF;
}


 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:1
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:2
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:3
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:4
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:5
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:6
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:7
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:8
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:9
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:10
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:11
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:12
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:13
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:14
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:15
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:16
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:17
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:18
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:19
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:20
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:21
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:22
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:23
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:24
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:25
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:26
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:27
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:28
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:29
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:30
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:31
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:32
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:33
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:34
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:35
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:36
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:37
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:38
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:39
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:40
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:41
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:42
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:43
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:44
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:45
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:46
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:47
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:48
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:49
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:50
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:51
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:52
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:53
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:54
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:55
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:56
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:57
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:58
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:59
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:60
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:61
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:62
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:63
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:64
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:65
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:66
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:67
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:68
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:69
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:70
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:71
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:72
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:73
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:74
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:75
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:76
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:77
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:78
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:79
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:80
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:81
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:82
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:83
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:84
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:85
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:86
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:87
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:88
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:89
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:90
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:91
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:92
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:93
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:94
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:95
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:96
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:97
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:98
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:99
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:100
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:101
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:102
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:103
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:104
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:105
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:106
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:107
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:108
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:109
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:110
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:111
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:112
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:113
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:114
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:115
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:116
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:117
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:118
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:119
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:120
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:121
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:122
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:123
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:124
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:125
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:126
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:127
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:128
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:129
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:130
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:131
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:132
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:133
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:134
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:135
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:136
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:137
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:138
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:139
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:140
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:141
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:142
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:143
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:144
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:145
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:146
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:147
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:148
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:149
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:150
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:151
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:152
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:153
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:154
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:155
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:156
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:157
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:158
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:159
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:160
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:161
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:162
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:163
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:164
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:165
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:166
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:167
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:168
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:169
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:170
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:171
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:172
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:173
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:174
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:175
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:176
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:177
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:178
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:179
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:180
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:181
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:182
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:183
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:184
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:185
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:186
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:187
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:188
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:189
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:190
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:191
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:192
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:193
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:194
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:195
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:196
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:197
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:198
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:199
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:200
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:201
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:202
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:203
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:204
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:205
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:206
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:207
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:208
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:209
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:210
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:211
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:212
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:213
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:214
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:215
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:216
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:217
 ConfigVertexingHF_ITSUpgrade_D0Lc_wPID.C:218