@@ -177,14 +177,14 @@ struct CascDiHadronCorr {
177177 ConfigurableAxis axisMultiplicity{" axisMultiplicity" , {VARIABLE_WIDTH , 0 , 10 , 20 , 40 , 60 , 80 , 100 , 120 , 140 , 160 , 180 , 200 , 220 , 240 , 260 }, " multiplicity axis for histograms" };
178178 ConfigurableAxis axisCentrality{" axisCentrality" , {VARIABLE_WIDTH , 0 , 5 , 10 , 20 , 30 , 40 , 50 , 60 , 70 , 80 , 90 , 100 }, " centrality axis for histograms" };
179179 ConfigurableAxis axisPt{" axisPt" , {VARIABLE_WIDTH , 0.2 , 0.5 , 1 , 1.5 , 2 , 3 , 4 , 6 , 10 }, " pt axis for histograms" };
180- ConfigurableAxis axisDeltaPhi{" axisDeltaPhi" , {1 , -PIHalf, PIHalf * 3 }, " delta phi axis for histograms" };
181- ConfigurableAxis axisDeltaEta{" axisDeltaEta" , {1 , -2.4 , 2.4 }, " delta eta axis for histograms" };
180+ ConfigurableAxis axisDeltaPhi{" axisDeltaPhi" , {72 , -PIHalf, PIHalf * 3 }, " delta phi axis for histograms" };
181+ ConfigurableAxis axisDeltaEta{" axisDeltaEta" , {48 , -2.4 , 2.4 }, " delta eta axis for histograms" };
182182 ConfigurableAxis axisPtTrigger{" axisPtTrigger" , {VARIABLE_WIDTH , 0.2 , 0.5 , 1 , 1.5 , 2 , 3 , 4 , 6 , 10 }, " pt trigger axis for histograms" };
183- ConfigurableAxis axisPtAssoc{" axisPtAssoc" , {VARIABLE_WIDTH , 0.2 , 10 }, " pt associated axis for histograms" };
183+ ConfigurableAxis axisPtAssoc{" axisPtAssoc" , {VARIABLE_WIDTH , 0.2 , 0.5 , 1 , 1.5 , 2 , 3 , 4 , 6 , 10 }, " pt associated axis for histograms" };
184184 ConfigurableAxis axisVtxMix{" axisVtxMix" , {VARIABLE_WIDTH , -10 , -9 , -8 , -7 , -6 , -5 , -4 , -3 , -2 , -1 , 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 }, " vertex axis for mixed event histograms" };
185185 ConfigurableAxis axisMultMix{" axisMultMix" , {VARIABLE_WIDTH , 0 , 10 , 20 , 40 , 60 , 80 , 100 , 120 , 140 , 160 , 180 , 200 , 220 , 240 , 260 }, " multiplicity / centrality axis for mixed event histograms" };
186186 ConfigurableAxis axisSample{" axisSample" , {cfgSampleSize, 0 , cfgSampleSize}, " sample axis for histograms" };
187- ConfigurableAxis axisInvMass{" axisInvMass" , {VARIABLE_WIDTH , 0 .0 , 5.0 }, " invariant mass axis for histograms" };
187+ ConfigurableAxis axisInvMass{" axisInvMass" , {VARIABLE_WIDTH , 1.7 , 1.75 , 1.8 , 1.85 , 1.9 , 1.95 , 2 .0 , 5.0 }, " invariant mass axis for histograms" };
188188
189189 ConfigurableAxis axisVertexEfficiency{" axisVertexEfficiency" , {10 , -10 , 10 }, " vertex axis for efficiency histograms" };
190190 ConfigurableAxis axisEtaEfficiency{" axisEtaEfficiency" , {20 , -1.0 , 1.0 }, " eta axis for efficiency histograms" };
@@ -778,7 +778,7 @@ struct CascDiHadronCorr {
778778 }
779779 }
780780
781- template <CorrelationContainer::CFStep step, typename TTracks, typename TCollision>
781+ template <CorrelationContainer::CFStep step, typename TTracks, typename TCollision>
782782 void fillCorrelationsCasc (TTracks tracks1, TCollision currentCollision, float posX, float posY, float posZ, int bin, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms (use buffer, only for mixevent)
783783 {
784784 float triggerWeight = 1 .0f ;
@@ -1489,15 +1489,15 @@ struct CascDiHadronCorr {
14891489 if (!cfgCentTableUnavailable) {
14901490 cent = getCentrality (collision);
14911491 }
1492- if (cfgUseAdditionalEventCut && !eventSelected (collision,tracks.size (), cent, false ))
1492+ if (cfgUseAdditionalEventCut && !eventSelected (collision, tracks.size (), cent, false ))
14931493 return ;
14941494
14951495 if (!cfgSelCollByNch && !cfgCentTableUnavailable && (cent < cfgCutCentMin || cent >= cfgCutCentMax))
14961496 return ;
1497-
1497+
14981498 float weightCent = 1 .0f ;
14991499 if (!cfgCentTableUnavailable)
1500- getCentralityWeight (weightCent, cent);
1500+ getCentralityWeight (weightCent, cent);
15011501
15021502 for (const auto & track : tracks) {
15031503 if (!trackSelected (track))
@@ -1542,15 +1542,15 @@ struct CascDiHadronCorr {
15421542 if (!cfgCentTableUnavailable) {
15431543 cent = getCentrality (collision);
15441544 }
1545- if (cfgUseAdditionalEventCut && !eventSelected (collision,tracks.size (), cent, false ))
1545+ if (cfgUseAdditionalEventCut && !eventSelected (collision, tracks.size (), cent, false ))
15461546 return ;
15471547
15481548 if (!cfgSelCollByNch && !cfgCentTableUnavailable && (cent < cfgCutCentMin || cent >= cfgCutCentMax))
15491549 return ;
1550-
1550+
15511551 float weightCent = 1 .0f ;
15521552 if (!cfgCentTableUnavailable)
1553- getCentralityWeight (weightCent, cent);
1553+ getCentralityWeight (weightCent, cent);
15541554
15551555 for (const auto & track : tracks) {
15561556 if (!trackSelected (track))
0 commit comments