Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions PWGCF/EbyEFluctuations/Tasks/radialFlowDecorr.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ struct RadialFlowDecorr {
float val = h->GetBinContent(ibx, iby, ibz);
return val;
*/
return 1.0;//set to 1 for now, will be restored later
return 1.0; // set to 1 for now, will be restored later
}

template <int KIntM, int KIntK>
Expand Down Expand Up @@ -793,10 +793,14 @@ struct RadialFlowDecorr {
declareCommonQA();

std::string userCcdbPath;
if(cfgSys==1) userCcdbPath = "/Users/s/somadutt/PbPbTest/";
if(cfgSys==2) userCcdbPath = "/Users/s/somadutt/OOTest/";
if(cfgSys==3) userCcdbPath = "/Users/s/somadutt/pPbTest/";
if(cfgSys==4) userCcdbPath = "/Users/s/somadutt/ppTest/";
if (cfgSys == 1)
userCcdbPath = "/Users/s/somadutt/PbPbTest/";
if (cfgSys == 2)
userCcdbPath = "/Users/s/somadutt/OOTest/";
if (cfgSys == 3)
userCcdbPath = "/Users/s/somadutt/pPbTest/";
if (cfgSys == 4)
userCcdbPath = "/Users/s/somadutt/ppTest/";

if (cfgRunMCMean || cfgRunMCFluc || cfgRunGetEff) {
declareMCCommonHists();
Expand Down