NSL
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends
InnerTrackerNGoodClustersGreaterThan.cpp
Go to the documentation of this file.
2 
4  m_matcher = std::make_unique<boolMatcher>([=](Event &event) {
5  unsigned int nCl = 0;
6  for (unsigned int i = 1; i < 8; ++i) {
7  if (NAIA::ContainsKeys(event.trTrackBase->LayerChargeStatus, i) &&
8  (event.trTrackBase->LayerChargeStatus[i] & mask) == 0)
9  ++nCl;
10  }
11 
12  return nCl > min;
13  });
14 }
NAIA::Event Event
Definition: matchers.h:11
RefCMatcher m_matcher
Definition: Selection.h:73