We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 045f74c commit 3b629e5Copy full SHA for 3b629e5
Common/Tasks/flowTest.cxx
@@ -145,11 +145,8 @@ struct flowTest {
145
auto const& tracks = mcParticle.tracks_as<recoTracksWithLabels>();
146
for (auto const& track : tracks) {
147
bool isITSFake = false;
148
-
149
- for (int bit = 0; bit < 7; bit++) {
150
- if (bitcheck(track.mcMask(), bit)) {
151
- isITSFake = true;
152
- }
+ if (bitcheck(track.mcMask(), 13)) { // should perhaps be done better at some point
+ isITSFake = true;
153
}
154
155
if (track.tpcNClsFound() >= analysisMinimumTPCClusters && track.itsNCls() >= analysisMinimumITSClusters) {
0 commit comments