Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:18

0001 #ifndef CommonTools_Utils_TypeCode_h
0002 #define CommonTools_Utils_TypeCode_h
0003 /* \class TypeCode
0004  *
0005  * \author Luca Lista, INFN
0006  *
0007  * \version $Id: TypeCode.h,v 1.1 2009/02/24 14:10:22 llista Exp $
0008  *
0009  */
0010 
0011 namespace reco {
0012   namespace method {
0013     enum TypeCode {
0014       doubleType = 0,
0015       floatType,
0016       intType,
0017       uIntType,
0018       charType,
0019       uCharType,
0020       shortType,
0021       uShortType,
0022       longType,
0023       uLongType,
0024       boolType,
0025       enumType,
0026       invalid
0027     };
0028   }
0029 }  // namespace reco
0030 
0031 #endif