Skip to content

Commit 4b3bbea

Browse files
committed
Please consider the following formatting changes
1 parent 56fb255 commit 4b3bbea

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

PWGLF/TableProducer/Common/mcCentrality.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
#include <Framework/OutputObjHeader.h>
3535
#include <Framework/runDataProcessing.h>
3636

37-
#include <TH1.h>
3837
#include <TFile.h>
38+
#include <TH1.h>
3939

4040
#include <chrono>
4141
#include <cstdint>
@@ -52,7 +52,7 @@ struct McCentrality {
5252
Produces<aod::McCentFT0Ms> centFT0M;
5353
Produces<aod::McCentFT0As> centFT0A;
5454
Produces<aod::McCentFT0Cs> centFT0C;
55-
55+
5656
// NOTE: Commented out unused produces to prevent garbage columns in AOD
5757
// Produces<aod::McCentFV0As> centFV0A;
5858
// Produces<aod::McCentFDDMs> centFDDM;
@@ -67,7 +67,7 @@ struct McCentrality {
6767
Service<o2::framework::O2DatabasePDG> pdgDB;
6868
ConfigurableAxis binsPercentile{"binsPercentile", {VARIABLE_WIDTH, 0, 0.001, 0.01, 1.0, 5.0, 10.0, 15.0, 20.0, 25.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0}, "Binning of the percentile axis"};
6969
ConfigurableAxis binsMultiplicity{"binsMultiplicity", {1000, 0, 5000}, "Binning of the multiplicity axis"};
70-
70+
7171
// Added fillFt0M to allow running strictly on A/C without crashing on missing M
7272
Configurable<bool> fillFt0M{"fillFt0M", true, "Fills the FT0M histogram"};
7373
Configurable<bool> fillFt0A{"fillFt0A", false, "Fills the FT0A histogram"};
@@ -148,7 +148,7 @@ struct McCentrality {
148148
}
149149
// Clone to detach from TFile directory so we can safely close the file
150150
auto hist = static_cast<TH1F*>(obj->Clone(Form("%s_clone", name)));
151-
hist->SetDirectory(nullptr);
151+
hist->SetDirectory(nullptr);
152152
return hist;
153153
};
154154

0 commit comments

Comments
 (0)