We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6eaceb commit be4a05bCopy full SHA for be4a05b
1 file changed
PWGMM/Lumi/Tasks/fitLumi.cxx
@@ -27,8 +27,6 @@
27
#include "TH1F.h"
28
#include "TH2F.h"
29
30
-
31
32
using namespace o2;
33
using namespace o2::framework;
34
using namespace o2::framework::expressions;
@@ -72,9 +70,8 @@ struct fitLumi {
72
70
73
71
for (auto const& ft0 : ft0s) {
74
auto bc = ft0.bc_as<BCsWithTimestamps>();
75
- if (!bc.timestamp())
76
- {
77
- continue;
+ if (!bc.timestamp()) {
+ continue;
78
}
79
std::bitset<8> fT0Triggers = ft0.triggerMask();
80
auto localBC = bc.globalBC() % nBCsPerOrbit;
@@ -91,9 +88,8 @@ struct fitLumi {
91
88
92
89
for (auto const& fdd : fdds) {
93
90
auto bc = fdd.bc_as<BCsWithTimestamps>();
94
95
96
97
98
std::bitset<8> fddTriggers = fdd.triggerMask();
99
0 commit comments