Skip to content

Commit d99fd30

Browse files
committed
Please consider the following formatting changes
1 parent e34cd81 commit d99fd30

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

PWGMM/Lumi/Tasks/lumiStabilityLightIons.cxx

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
#include "CCDB/BasicCCDBManager.h"
2323
#include "DataFormatsParameters/AggregatedRunInfo.h"
2424
#include "DataFormatsParameters/GRPLHCIFData.h"
25-
#include "Framework/AnalysisTask.h"
26-
#include "Framework/runDataProcessing.h"
2725
#include "Framework/ASoA.h"
2826
#include "Framework/AnalysisDataModel.h"
27+
#include "Framework/AnalysisTask.h"
28+
#include "Framework/runDataProcessing.h"
2929

3030
#include <limits>
3131
#include <map>
@@ -38,14 +38,16 @@ using namespace o2::framework::expressions;
3838

3939
o2::common::core::MetadataHelper metadataInfo; // Metadata helper
4040

41-
namespace o2::aod {
42-
namespace myBc_aod {
41+
namespace o2::aod
42+
{
43+
namespace myBc_aod
44+
{
4345
DECLARE_SOA_COLUMN(Timestamp, timestamp, uint64_t);
4446
DECLARE_SOA_COLUMN(TimeZNA, timeZNA, float);
4547
DECLARE_SOA_COLUMN(TimeZNC, timeZNC, float);
46-
} //namespace myBc_aod
48+
} // namespace myBc_aod
4749
DECLARE_SOA_TABLE(MyBCaod, "AOD", "MYBCAOD", myBc_aod::Timestamp, myBc_aod::TimeZNA, myBc_aod::TimeZNC);
48-
} //namespace o2::aod
50+
} // namespace o2::aod
4951

5052
using MyBCs = soa::Join<aod::BCs, aod::BcSels, aod::Timestamps, aod::Run3MatchedToBCSparse>;
5153

@@ -68,7 +70,7 @@ struct LumiStabilityLightIons {
6870

6971
Configurable<int> cfgEmptyBCsBeforeLeadingBC{"cfgEmptyBCsBeforeLeadingBC", 5, "Minimum number of empty BCs before a leading BC to identify it as such"};
7072

71-
//Configurables specific to VdM analysis: output ao2d with timestamps and ZDC times
73+
// Configurables specific to VdM analysis: output ao2d with timestamps and ZDC times
7274
Configurable<bool> cfgFillBCao2d{"cfgFillBCao2d", false, "Fill BC ao2d with timestamps and ZDC times"};
7375
Configurable<uint64_t> cfgTstampStartFillingBCao2d{"cfgTstampStartFillingBCao2d", 0, "Minimum value of timestamp for output bc ao2d to be filled"};
7476
Configurable<uint64_t> cfgTstampEndFillingBCao2d{"cfgTstampEndFillingBCao2d", 0, "Maximum value of timestamp for output bc ao2d to be filled"};
@@ -271,9 +273,9 @@ struct LumiStabilityLightIons {
271273

272274
mHistManager.fill(HIST("ZDCQA/ZDCTimes"), timeZNA, timeZNC);
273275

274-
//For VdM analysis: fill timestamps and ZDC times in output tree, if enabled
276+
// For VdM analysis: fill timestamps and ZDC times in output tree, if enabled
275277
uint64_t timestamp = bc.timestamp();
276-
if(cfgFillBCao2d && timestamp>=cfgTstampStartFillingBCao2d && timestamp<=cfgTstampEndFillingBCao2d) {
278+
if (cfgFillBCao2d && timestamp >= cfgTstampStartFillingBCao2d && timestamp <= cfgTstampEndFillingBCao2d) {
277279
BCaod(timestamp, timeZNA, timeZNC);
278280
}
279281
}

0 commit comments

Comments
 (0)