Skip to content

Commit 7501b48

Browse files
committed
clang-format
1 parent 53666fa commit 7501b48

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

PWGDQ/Core/HistogramsLibrary.cxx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@
1111
//
1212
// Contact: iarsene@cern.ch, i.c.arsene@fys.uio.no
1313
//
14-
#include <vector>
15-
#include <algorithm>
1614
#include "PWGDQ/Core/HistogramsLibrary.h"
15+
1716
#include "VarManager.h"
17+
1818
#include "CommonConstants/MathConstants.h"
1919

20+
#include <algorithm>
21+
#include <vector>
22+
2023
void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* histClass, const char* groupName, const char* subGroupName)
2124
{
2225
//
@@ -930,7 +933,7 @@ void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* h
930933
double xmin[4] = {0., -1., 0., 0.};
931934
double xmax[4] = {20., 1., 2. * o2::constants::math::PI, 2. * o2::constants::math::PI};
932935
hm->AddHistogram(histClass, "Pt_cosThetaHE_phiHE_phiTildeHE", "", 4, varspTHE, bins, xmin, xmax, 0, -1, kFALSE);
933-
hm->AddHistogram(histClass, "Pt_cosThetaCS_phiCS_phiTildeCS", "", 4, varspTCS, bins, xmin, xmax, 0, -1, kFALSE);
936+
hm->AddHistogram(histClass, "Pt_cosThetaCS_phiCS_phiTildeCS", "", 4, varspTCS, bins, xmin, xmax, 0, -1, kFALSE);
934937
}
935938
}
936939
if (!groupStr.CompareTo("mctruth_quad")) {

PWGDQ/Core/MCSignalLibrary.cxx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@
1515
#include <vector>
1616
// #include <iostream>
1717

18-
#include <TPDGCode.h>
19-
#include "CommonConstants/PhysicsConstants.h"
2018
#include "PWGDQ/Core/MCSignalLibrary.h"
19+
20+
#include "CommonConstants/PhysicsConstants.h"
2121
#include "Framework/Logger.h"
2222

23+
#include <TPDGCode.h>
24+
2325
using namespace o2::constants::physics;
2426
// using std::cout;
2527
// using std::endl;
@@ -205,7 +207,7 @@ MCSignal* o2::aod::dqmcsignals::GetMCSignal(const char* name)
205207
prong.SetSignalInTime(true);
206208
signal = new MCSignal(name, "Decay of anything into J/psi", {prong}, {-1});
207209
return signal;
208-
}
210+
}
209211
if (!nameStr.compare("eeFromNonpromptPsi2S")) {
210212
MCProng prong(2, {11, 100443}, {true, true}, {false, false}, {0, 0}, {0, 0}, {false, false}, false, {503}, {false});
211213
signal = new MCSignal(name, "ee pairs from non-prompt psi2s decays", {prong, prong}, {1, 1}); // signal at pair level

0 commit comments

Comments
 (0)