]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
missing ; in run macro
authorsnelling <snelling@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 19 Oct 2010 17:03:00 +0000 (17:03 +0000)
committersnelling <snelling@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 19 Oct 2010 17:03:00 +0000 (17:03 +0000)
PWG2/FLOW/macros/AddTaskFlowCentrality.C
PWG2/FLOW/macros/runFlowTaskCentralityTrain.C

index cacedcc67b6070db21d85ddf7d4e78e42bc82699..b3be4a6656b4b2d5213d9353e2a6472b53153a1e 100644 (file)
@@ -59,8 +59,8 @@ Bool_t WEIGHTS[] = {kFALSE,kFALSE,kFALSE}; //Phi, v'(pt), v'(eta)
 AliFlowTrackCuts::trackParameterType rptype = AliFlowTrackCuts::kGlobal;
 AliFlowTrackCuts::trackParameterType poitype = AliFlowTrackCuts::kGlobal;
 
-const char* rptypestr = AliFlowTrackCuts::GetParamTypeName(rptype)
-const char* poitypestr = AliFlowTrackCuts::GetParamTypeName(poitype)
+const char* rptypestr = AliFlowTrackCuts::GetParamTypeName(rptype);
+const char* poitypestr = AliFlowTrackCuts::GetParamTypeName(poitype);
 
 void AddTaskFlowCentrality( Int_t refMultMin=0,
                             Int_t refMultMax=1e10,
index f057a450a79a3089ed9d6ce6730afd406397ba29..5d24fe3b0718d6ad5c721885399030de1138b908 100644 (file)
@@ -8,8 +8,8 @@ enum anaModes {mLocal,mLocalPAR,mPROOF,mGrid,mGridPAR};
 //          (Remark: when using this mode set also Bool_t bUseParFiles = kTRUE; in CreateAlienHandler.C)
  
 // CENTRALITY DEFINITION
-const Int_t numberOfCentralityBins = 4;
-Int_t centralityArray[numberOfCentralityBins+1] = {0,10,25,50,100}; // in terms of reference multiplicity
+const Int_t numberOfCentralityBins = 1;
+Int_t centralityArray[numberOfCentralityBins+1] = {0,10000}; // in terms of reference multiplicity
 TString commonOutputFileName = "outputCentrality"; // e.g.: result for centrality bin 0 will be in the file "outputCentrality0.root", etc
 
 void runFlowTaskCentralityTrain(Int_t mode=mLocal, Int_t nRuns = 10,