@@ -81,7 +81,7 @@ struct FlowGfwTask {
8181 O2_DEFINE_CONFIGURABLE (cfgCutOccupancyLow, int , 0 , " Low cut on TPC occupancy" )
8282 O2_DEFINE_CONFIGURABLE (cfgCutDCAz, float , 2 .0f , " Custom DCA Z cut" )
8383 O2_DEFINE_CONFIGURABLE (cfgNbootstrap, int , 10 , " Number of subsamples" )
84- O2_DEFINE_CONFIGURABLE (cfgCentEstFt0c, bool , true , " Centrality estimator based on FT0C signal" )
84+ O2_DEFINE_CONFIGURABLE (cfgCentEstFt0c, bool , false , " Centrality estimator based on FT0C signal" )
8585 O2_DEFINE_CONFIGURABLE (cfgCentEstFt0a, bool , false , " Centrality estimator based on FT0A signal" )
8686 O2_DEFINE_CONFIGURABLE (cfgCentEstFt0m, bool , false , " A centrality estimator based on FT0A+FT0C signals." )
8787 O2_DEFINE_CONFIGURABLE (cfgCentEstFv0a, bool , false , " Centrality estimator based on FV0A signal" )
@@ -93,8 +93,8 @@ struct FlowGfwTask {
9393 O2_DEFINE_CONFIGURABLE (cfgMagnetField, std::string, " GLO/Config/GRPMagField" , " CCDB path to Magnet field object" )
9494 O2_DEFINE_CONFIGURABLE (cfgDCAzPt, bool , false , " switch for DCAz pt dependent" )
9595 O2_DEFINE_CONFIGURABLE (cfgTrackSelRun3ITSMatch, bool , false , " Track selection for ITS matches" )
96- O2_DEFINE_CONFIGURABLE (cfgUseAdditionalEventCut, bool , true , " Use additional event cut on mult correlations" )
97- O2_DEFINE_CONFIGURABLE (cfgUseAdditionalTrackCut, bool , true , " Use additional track cut on phi" )
96+ O2_DEFINE_CONFIGURABLE (cfgUseAdditionalEventCut, bool , false , " Use additional event cut on mult correlations" )
97+ O2_DEFINE_CONFIGURABLE (cfgUseAdditionalTrackCut, bool , false , " Use additional track cut on phi" )
9898 O2_DEFINE_CONFIGURABLE (cfgOccupancy, bool , false , " Bool for event selection on detector occupancy" );
9999 O2_DEFINE_CONFIGURABLE (cfgNoTimeFrameBorder, bool , false , " kNoTimeFrameBorder" );
100100 O2_DEFINE_CONFIGURABLE (cfgNoITSROFrameBorder, bool , false , " kNoITSROFrameBorder" );
@@ -103,10 +103,10 @@ struct FlowGfwTask {
103103 O2_DEFINE_CONFIGURABLE (cfgIsVertexITSTPC, bool , false , " kIsVertexITSTPC" );
104104 O2_DEFINE_CONFIGURABLE (cfgNoCollInTimeRangeStandard, bool , false , " kNoCollInTimeRangeStandard" );
105105 O2_DEFINE_CONFIGURABLE (cfgEvSelkIsGoodITSLayersAll, bool , false , " kIsGoodITSLayersAll" )
106- O2_DEFINE_CONFIGURABLE (cfgMultCut, bool , true , " Use additional event cut on mult correlations" );
107- O2_DEFINE_CONFIGURABLE (cfgV0AT0ANSigma, bool , true , " V0A T0A n sigma cut" )
106+ O2_DEFINE_CONFIGURABLE (cfgMultCut, bool , false , " Use additional event cut on mult correlations" );
107+ O2_DEFINE_CONFIGURABLE (cfgV0AT0ANSigma, bool , false , " V0A T0A n sigma cut" )
108108 O2_DEFINE_CONFIGURABLE (cfgNSigma, float , 5 .0f , " N sigma cut" )
109- O2_DEFINE_CONFIGURABLE (cfgGlobalTracks, bool , true , " Global tracks" )
109+ O2_DEFINE_CONFIGURABLE (cfgGlobalTracks, bool , false , " Global tracks" )
110110 O2_DEFINE_CONFIGURABLE (cfgGlobalplusITS, bool , false , " Global and ITS tracks" )
111111 O2_DEFINE_CONFIGURABLE (cfgGlobalonly, bool , false , " Global only tracks" )
112112 O2_DEFINE_CONFIGURABLE (cfgITSonly, bool , false , " ITS only tracks" )
@@ -1152,7 +1152,7 @@ struct FlowGfwTask {
11521152 }
11531153
11541154 } // End of process
1155- PROCESS_SWITCH (FlowGfwTask, processData, " Process analysis for Run 3 data" , true );
1155+ PROCESS_SWITCH (FlowGfwTask, processData, " Process analysis for Run 3 data" , false );
11561156
11571157 using TheFilteredMyTracks = soa::Filtered<MyTracks>;
11581158 using TheFilteredMyCollisions = soa::Filtered<MyCollisions>;
0 commit comments