CMS 3D CMS Logo

Identity.h
Go to the documentation of this file.
1 #ifndef PhysicsTools_Utilities_Identity_h
2 #define PhysicsTools_Utilities_Identity_h
3 
4 namespace funct {
5 
6  struct Identity {
7  Identity() { }
8  double operator()(double x) const {
9  return x;
10  }
11  };
12 
13 }
14 
15 #endif
Definition: Abs.h:5
double operator()(double x) const
Definition: Identity.h:8