NSL
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends
InnerTrackerNHitsGreaterThan.h
Go to the documentation of this file.
1 #ifndef NSL_SELECTIONS_TRACKER_INNERTRACKERNHITSGREATERTHAN_H
2 #define NSL_SELECTIONS_TRACKER_INNERTRACKERNHITSGREATERTHAN_H
3 
4 // our headers
5 #include "NSL/Selection.h"
6 
7 namespace NSL {
8 namespace Selections {
9 
10 namespace InnerTracker {
11 class NHitsGreaterThan : public Selection {
12 public:
13  NHitsGreaterThan(unsigned int min, NAIA::TrTrack::Side side);
14 };
15 } // namespace InnerTracker
16 
17 namespace { // hidden
18 namespace it_base = ::NSL::Selections::InnerTracker;
19 }
20 
21 namespace Common {
22 namespace InnerTracker {
24 public:
25  NHitsGreaterThan() : it_base::NHitsGreaterThan(4, NAIA::TrTrack::Side::Y){}
26 };
27 }
28 } // namespace Common
29 
30 } // namespace Selections
31 } // namespace NSL
32 
33 #endif
NHitsGreaterThan(unsigned int min, NAIA::TrTrack::Side side)