NSL
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends
TrackerLayerChargeStatus.cpp
Go to the documentation of this file.
2 
4 
5  m_matcher = std::make_shared<boolMatcher>([=](Event &event) {
6  auto jlayer = layer - 1;
7  auto result = false;
8  auto chargestatus = event.trTrackBase->LayerChargeStatus[jlayer];
9  if ((chargestatus & 0x10013D) == 0)
10  result = true;
11  else
12  result = false;
13 
14  return result;
15  });
16 }
NAIA::Event Event
Definition: matchers.h:11
RefCMatcher m_matcher
Definition: Selection.h:73