AliAnalysisHadEtMonteCarlo * ConfigHadEtMonteCarlo(){
//cout<<"Hello I am configuring you"<<endl;
cout<<"You are analyzing 5 TeV p+Pb simulations"<<endl;
AliAnalysisHadEtMonteCarlo *hadEtMC = new AliAnalysisHadEtMonteCarlo();
//Whether or not to investigate the effects of efficiency, momentum resolution, PID, etc.
hadEtMC->InvestigateSmearing(kTRUE);
//Turns off O(100) histograms that we do not normally use
hadEtMC->RunLightweight(kFALSE);
//Whether or not to look at Et(sim)-Et(reco) for full acceptance
hadEtMC->InvestigateFull(kTRUE);
//Whether or not to look at Et(sim)-Et(reco) for EMCAL acceptance
hadEtMC->InvestigateEMCAL(kFALSE);
//Whether or not to look at Et(sim)-Et(reco) for PHOS acceptance
hadEtMC->InvestigatePHOS(kFALSE);
//Whether or not to look at Et(sim)-Et(reco) for Pi/K/p in full acceptance (full acceptance must be turned on)
hadEtMC->InvestigatePiKP(kTRUE);
//Look at ITS+TPC tracks
hadEtMC->RequireITSHits(kTRUE);
//Look at the 2010 p+p data...
hadEtMC->SetDataSet(2013);
hadEtMC->SetV0ScaleDataSet(2013);
//Turn baryon enhancement on and off
hadEtMC->EnhanceBaryons(kTRUE);
//Do trigger checks
hadEtMC->DoTriggerChecks();
hadEtMC->Init();
return hadEtMC;
}
ConfigHadEtMonteCarlopPb5TeV.C:1 ConfigHadEtMonteCarlopPb5TeV.C:2 ConfigHadEtMonteCarlopPb5TeV.C:3 ConfigHadEtMonteCarlopPb5TeV.C:4 ConfigHadEtMonteCarlopPb5TeV.C:5 ConfigHadEtMonteCarlopPb5TeV.C:6 ConfigHadEtMonteCarlopPb5TeV.C:7 ConfigHadEtMonteCarlopPb5TeV.C:8 ConfigHadEtMonteCarlopPb5TeV.C:9 ConfigHadEtMonteCarlopPb5TeV.C:10 ConfigHadEtMonteCarlopPb5TeV.C:11 ConfigHadEtMonteCarlopPb5TeV.C:12 ConfigHadEtMonteCarlopPb5TeV.C:13 ConfigHadEtMonteCarlopPb5TeV.C:14 ConfigHadEtMonteCarlopPb5TeV.C:15 ConfigHadEtMonteCarlopPb5TeV.C:16 ConfigHadEtMonteCarlopPb5TeV.C:17 ConfigHadEtMonteCarlopPb5TeV.C:18 ConfigHadEtMonteCarlopPb5TeV.C:19 ConfigHadEtMonteCarlopPb5TeV.C:20 ConfigHadEtMonteCarlopPb5TeV.C:21 ConfigHadEtMonteCarlopPb5TeV.C:22 ConfigHadEtMonteCarlopPb5TeV.C:23 ConfigHadEtMonteCarlopPb5TeV.C:24 ConfigHadEtMonteCarlopPb5TeV.C:25 ConfigHadEtMonteCarlopPb5TeV.C:26 ConfigHadEtMonteCarlopPb5TeV.C:27 ConfigHadEtMonteCarlopPb5TeV.C:28 ConfigHadEtMonteCarlopPb5TeV.C:29 ConfigHadEtMonteCarlopPb5TeV.C:30 ConfigHadEtMonteCarlopPb5TeV.C:31 ConfigHadEtMonteCarlopPb5TeV.C:32 ConfigHadEtMonteCarlopPb5TeV.C:33 ConfigHadEtMonteCarlopPb5TeV.C:34 ConfigHadEtMonteCarlopPb5TeV.C:35 ConfigHadEtMonteCarlopPb5TeV.C:36 ConfigHadEtMonteCarlopPb5TeV.C:37 ConfigHadEtMonteCarlopPb5TeV.C:38 ConfigHadEtMonteCarlopPb5TeV.C:39 ConfigHadEtMonteCarlopPb5TeV.C:40