@@ -63,26 +63,26 @@ struct FlowGfwTask {
6363 O2_DEFINE_CONFIGURABLE (cfgCutITSclu, float , 5 .0f , " minimum ITS clusters" )
6464 O2_DEFINE_CONFIGURABLE (cfgMinCentFT0C, float , 0 .0f , " Minimum FT0C Centrality" )
6565 O2_DEFINE_CONFIGURABLE (cfgMaxCentFT0C, float , 100 .0f , " Maximum FT0C Centrality" )
66- O2_DEFINE_CONFIGURABLE (cfgUseAdditionalEventCut, bool , true , " Use additional event cut on mult correlations" )
67- O2_DEFINE_CONFIGURABLE (cfgUseAdditionalTrackCut, bool , true , " Use additional track cut on phi" )
68- O2_DEFINE_CONFIGURABLE (cfgUseNch, bool , true , " Use Nch for flow observables" )
66+ O2_DEFINE_CONFIGURABLE (cfgUseAdditionalEventCut, bool , false , " Use additional event cut on mult correlations" )
67+ O2_DEFINE_CONFIGURABLE (cfgUseAdditionalTrackCut, bool , false , " Use additional track cut on phi" )
68+ O2_DEFINE_CONFIGURABLE (cfgUseNch, bool , false , " Use Nch for flow observables" )
6969 O2_DEFINE_CONFIGURABLE (cfgNbootstrap, int , 10 , " Number of subsamples" )
70- O2_DEFINE_CONFIGURABLE (cfgOutputNUAWeights, bool , true , " Fill and output NUA weights" )
70+ O2_DEFINE_CONFIGURABLE (cfgOutputNUAWeights, bool , false , " Fill and output NUA weights" )
7171 O2_DEFINE_CONFIGURABLE (cfgEfficiency, std::string, " " , " CCDB path to efficiency object" )
7272 O2_DEFINE_CONFIGURABLE (cfgAcceptance, std::string, " " , " CCDB path to acceptance object" )
7373 O2_DEFINE_CONFIGURABLE (cfgMagnetField, std::string, " GLO/Config/GRPMagField" , " CCDB path to Magnet field object" )
7474 O2_DEFINE_CONFIGURABLE (cfgCutOccupancyHigh, int , 3000 , " High cut on TPC occupancy" )
7575 O2_DEFINE_CONFIGURABLE (cfgCutOccupancyLow, int , 0 , " Low cut on TPC occupancy" )
7676 O2_DEFINE_CONFIGURABLE (cfgCutDCAz, float , 2 , " Custom DCA Z cut" )
7777 O2_DEFINE_CONFIGURABLE (cfgCutDCAxy, float , 0 .2f , " Custom DCA XY cut" )
78- O2_DEFINE_CONFIGURABLE (cfgNoTimeFrameBorder, bool , true , " kNoTimeFrameBorder" );
79- O2_DEFINE_CONFIGURABLE (cfgNoITSROFrameBorder, bool , true , " kNoITSROFrameBorder" );
80- O2_DEFINE_CONFIGURABLE (cfgNoSameBunchPileup, bool , true , " kNoSameBunchPileup" );
81- O2_DEFINE_CONFIGURABLE (cfgIsGoodZvtxFT0vsPV, bool , true , " kIsGoodZvtxFT0vsPV" );
82- O2_DEFINE_CONFIGURABLE (cfgNoCollInTimeRangeStandard, bool , true , " kNoCollInTimeRangeStandard" );
83- O2_DEFINE_CONFIGURABLE (cfgEvSelkIsGoodITSLayersAll, bool , true , " kIsGoodITSLayersAll" )
84- O2_DEFINE_CONFIGURABLE (cfgOccupancy, bool , true , " Bool for event selection on detector occupancy" );
85- O2_DEFINE_CONFIGURABLE (cfgMultCut, bool , true , " Use additional event cut on mult correlations" );
78+ O2_DEFINE_CONFIGURABLE (cfgNoTimeFrameBorder, bool , false , " kNoTimeFrameBorder" );
79+ O2_DEFINE_CONFIGURABLE (cfgNoITSROFrameBorder, bool , false , " kNoITSROFrameBorder" );
80+ O2_DEFINE_CONFIGURABLE (cfgNoSameBunchPileup, bool , false , " kNoSameBunchPileup" );
81+ O2_DEFINE_CONFIGURABLE (cfgIsGoodZvtxFT0vsPV, bool , false , " kIsGoodZvtxFT0vsPV" );
82+ O2_DEFINE_CONFIGURABLE (cfgNoCollInTimeRangeStandard, bool , false , " kNoCollInTimeRangeStandard" );
83+ O2_DEFINE_CONFIGURABLE (cfgEvSelkIsGoodITSLayersAll, bool , false , " kIsGoodITSLayersAll" )
84+ O2_DEFINE_CONFIGURABLE (cfgOccupancy, bool , false , " Bool for event selection on detector occupancy" );
85+ O2_DEFINE_CONFIGURABLE (cfgMultCut, bool , false , " Use additional event cut on mult correlations" );
8686 O2_DEFINE_CONFIGURABLE (FineBinning, bool , false , " Manually change to fine binning" )
8787 O2_DEFINE_CONFIGURABLE (cfgTrackSelRun3ITSMatch, bool , false , " System check: Run3ITSMatch" )
8888 O2_DEFINE_CONFIGURABLE (cfgTrackSel, bool , false , " System check: track selection" )
@@ -268,6 +268,7 @@ struct FlowGfwTask {
268268 registry.add (" ZNvsZEMcollrest" , " ZNvsZEMcoll; ZEM; ZDC energy (GeV)" , {HistType::kTH2F , {{{nBinsAmp, -0.5 , maxZEM}, {nBinsAmp, -0.5 , 2 . * maxZN}}}});
269269
270270 // Track plots
271+ registry.add (" Nch" , " N_{ch 0-5%} vs #Events of;N_{ch 0-5%};No. of Events" , {HistType::kTH1D , {axisNch}});
271272 registry.add (" Events_per_Centrality_Bin" , " Events_per_Centrality_Bin;Centrality FT0C;No. of Events" , kTH1F , {axisCentrality});
272273 registry.add (" Global_Tracks_Nch_vs_Cent" , " Global Tracks;Centrality (%); M (|#eta| < 0.8);" , {HistType::kTH2D , {axisCentrality, axisNch}});
273274
@@ -886,6 +887,8 @@ struct FlowGfwTask {
886887 fillProfile (corrconfigs.at (5 ), bootstrapArray[sampleIndex][kc32Nch05], globalTracksNch);
887888 fillProfile (corrconfigs.at (6 ), bootstrapArray[sampleIndex][kc32Nch05etagap], globalTracksNch);
888889 fillProfile (corrconfigs.at (7 ), bootstrapArray[sampleIndex][kc34Nch05], globalTracksNch);
890+
891+ registry.fill (HIST (" Nch" ), globalTracksNch);
889892 }
890893
891894 // Filling Flow Container
@@ -894,7 +897,7 @@ struct FlowGfwTask {
894897 }
895898
896899 } // End of process
897- PROCESS_SWITCH (FlowGfwTask, processData, " Process analysis for Run 3 data" , true );
900+ PROCESS_SWITCH (FlowGfwTask, processData, " Process analysis for Run 3 data" , false );
898901
899902 // Filter the Reconstructed tracks
900903 Filter mytrackFilter = (nabs(aod::track::eta) < cfgCutEta) && (aod::track::pt > cfgCutPtMin) && (aod::track::pt < cfgCutPtMax) && (nabs(aod::track::dcaXY) < cfgCutDCAxy);
0 commit comments