Skip to content

Commit 10abdaf

Browse files
committed
Please consider the following formatting changes
1 parent cb3c82e commit 10abdaf

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

DPG/Tasks/TPC/tpcSkimsTableCreator.cxx

+5-10
Original file line numberDiff line numberDiff line change
@@ -674,11 +674,11 @@ struct TreeWriterTPCTOF {
674674
rowTPCTOFTreeWithTrkQA.reserve(tracks.size());
675675
for (auto const& trk : tracks) {
676676
if (!((trackSelection == 0) ||
677-
((trackSelection == 1) && trk.isGlobalTrack()) ||
678-
((trackSelection == 2) && trk.isGlobalTrackWoPtEta()) ||
679-
((trackSelection == 3) && trk.isGlobalTrackWoDCA()) ||
680-
((trackSelection == 4) && trk.isQualityTrack()) ||
681-
((trackSelection == 5) && trk.isInAcceptanceTrack()) )){
677+
((trackSelection == 1) && trk.isGlobalTrack()) ||
678+
((trackSelection == 2) && trk.isGlobalTrackWoPtEta()) ||
679+
((trackSelection == 3) && trk.isGlobalTrackWoDCA()) ||
680+
((trackSelection == 4) && trk.isQualityTrack()) ||
681+
((trackSelection == 5) && trk.isInAcceptanceTrack()))) {
682682
continue;
683683
}
684684
// get the corresponding trackQA using labelTracks2TracKQA and get variables of interest
@@ -727,11 +727,6 @@ struct TreeWriterTPCTOF {
727727
PROCESS_SWITCH(TreeWriterTPCTOF, processWithTrQA, "Samples for PID with TrackQA info", false);
728728
}; /// struct TreeWriterTPCTOF
729729

730-
731-
732-
733-
734-
735730
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
736731
{
737732
auto workflow = WorkflowSpec{adaptAnalysisTask<TreeWriterTPCTOF>(cfgc)};

0 commit comments

Comments
 (0)