Skip to content

Commit b9ae9bb

Browse files
committed
Please consider the following formatting changes
1 parent 7740993 commit b9ae9bb

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Detectors/TPC/workflow/src/MIPTrackFilterSpec.cxx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ void MIPTrackFilterDevice::run(ProcessingContext& pc)
130130
return;
131131
}
132132

133-
134133
o2::globaltracking::RecoContainer recoData;
135134
recoData.collectData(pc, *mDataRequest);
136135
const auto tracksTPC = recoData.getTPCTracks();
@@ -148,17 +147,17 @@ void MIPTrackFilterDevice::run(ProcessingContext& pc)
148147
auto vtxRefs = recoData.getPrimaryVertexMatchedTrackRefs(); // references from vertex to these track IDs
149148
std::vector<GID::Source> selSrc{GID::ITSTPC, GID::ITSTPCTRD, GID::ITSTPCTRDTOF}; // for Instance
150149
// LOGP(info, "Number of vertex tracks: {}", vtxRefs.size());
151-
const auto nv = (vtxRefs.size()>0) ? vtxRefs.size() - 1 : 0; // note: the last entry groups the tracks which were not related to any vertex, to skip them, use vtxRefs.size()-1
150+
const auto nv = (vtxRefs.size() > 0) ? vtxRefs.size() - 1 : 0; // note: the last entry groups the tracks which were not related to any vertex, to skip them, use vtxRefs.size()-1
152151

153152
for (int iv = 0; iv < nv; iv++) {
154153
const auto& vtref = vtxRefs[iv];
155-
//LOGP(info, "Processing vertex {} with {} tracks", iv, vtref.getEntries());
154+
// LOGP(info, "Processing vertex {} with {} tracks", iv, vtref.getEntries());
156155
vertex = recoData.getPrimaryVertex(iv).getXYZ();
157-
//LOGP(info, "Vertex position: x={} y={} z={}", vertex.x(), vertex.y(), vertex.z());
156+
// LOGP(info, "Vertex position: x={} y={} z={}", vertex.x(), vertex.y(), vertex.z());
158157

159158
for (auto src : selSrc) {
160159
int idMin = vtxRefs[iv].getFirstEntryOfSource(src), idMax = idMin + vtxRefs[iv].getEntriesOfSource(src);
161-
//LOGP(info, "Source {}: idMin={} idMax={}", GID::getSourceName(src), idMin, idMax);
160+
// LOGP(info, "Source {}: idMin={} idMax={}", GID::getSourceName(src), idMin, idMax);
162161

163162
for (int i = idMin; i < idMax; i++) {
164163
auto vid = trackIndex[i];

0 commit comments

Comments
 (0)