Skip to content

Commit eeb2d95

Browse files
committed
Please consider the following formatting changes
1 parent e1e6535 commit eeb2d95

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGMM/Mult/Tasks/dndetaMFTPbPb.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1724,13 +1724,13 @@ struct DndetaMFTPbPb {
17241724
// MC gen
17251725
if constexpr (has_reco_cent<C>) {
17261726
if (particle.eta() > trackCuts.minEta && particle.eta() < trackCuts.maxEta) {
1727-
if( std::abs(mcCollision.posZ()) < eventCuts.maxZvtx ) {
1727+
if (std::abs(mcCollision.posZ()) < eventCuts.maxZvtx) {
17281728
qaregistry.fill(HIST("Tracks/Centrality/hPtEtaEffGen"), particle.pt(), particle.eta(), crec, occrec);
17291729
}
17301730
}
17311731
} else {
17321732
if (particle.eta() > trackCuts.minEta && particle.eta() < trackCuts.maxEta) {
1733-
if( std::abs(mcCollision.posZ()) < eventCuts.maxZvtx ) {
1733+
if (std::abs(mcCollision.posZ()) < eventCuts.maxZvtx) {
17341734
qaregistry.fill(HIST("Tracks/hPtEtaEffGen"), particle.pt(), particle.eta(), occrec);
17351735
}
17361736
}
@@ -1745,7 +1745,7 @@ struct DndetaMFTPbPb {
17451745
if constexpr (has_reco_cent<C>) {
17461746
if (track.eta() > trackCuts.minEta && track.eta() < trackCuts.maxEta) {
17471747
if (!iscounted) { // primaries
1748-
if( std::abs(mcCollision.posZ()) < eventCuts.maxZvtx ) {
1748+
if (std::abs(mcCollision.posZ()) < eventCuts.maxZvtx) {
17491749
qaregistry.fill(HIST("Tracks/Centrality/hPtEtaEffPrim"), particle.pt(), particle.eta(), crec, occrec);
17501750
}
17511751
iscounted = true;
@@ -1759,7 +1759,7 @@ struct DndetaMFTPbPb {
17591759
} else {
17601760
if (track.eta() > trackCuts.minEta && track.eta() < trackCuts.maxEta) {
17611761
if (!iscounted) { // primaries
1762-
if( std::abs(mcCollision.posZ()) < eventCuts.maxZvtx ) {
1762+
if (std::abs(mcCollision.posZ()) < eventCuts.maxZvtx) {
17631763
qaregistry.fill(HIST("Tracks/hPtEtaEffPrim"), particle.pt(), particle.eta(), occrec);
17641764
}
17651765
iscounted = true;

0 commit comments

Comments
 (0)