CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
StripClusterAboveU.h
Go to the documentation of this file.
1 #ifndef StripClusterAboveU_H
2 #define StripClusterAboveU_H
3 
5 
12 public:
13  StripClusterAboveU( float u) : theU(u) {}
14  bool operator()( const SiStripCluster& hit) const {
15  return hit.barycenter() > theU;
16  }
17 private:
18  float theU;
19 };
20 
21 #endif
float barycenter() const
bool operator()(const SiStripCluster &hit) const