Go to the documentation of this file.00001 #ifndef PhysicsTools_Utilities_Identity_h
00002 #define PhysicsTools_Utilities_Identity_h
00003
00004 namespace funct {
00005
00006 struct Identity {
00007 Identity() { }
00008 double operator()(double x) const {
00009 return x;
00010 }
00011 };
00012
00013 }
00014
00015 #endif