Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:06

0001 #ifndef DTTimeUnits_H
0002 #define DTTimeUnits_H
0003 /** \class DTTimeUnits
0004  *
0005  *  Description: 
0006  *       Class to contain time units identifier
0007  *
0008  *  $Date: 2006-03-30 17:42:20 $
0009  *  $Revision: 1.1 $
0010  *  \author Paolo Ronchese INFN Padova
0011  *
0012  */
0013 
0014 //----------------------
0015 // Base Class Headers --
0016 //----------------------
0017 
0018 //------------------------------------
0019 // Collaborating Class Declarations --
0020 //------------------------------------
0021 
0022 //---------------
0023 // C++ Headers --
0024 //---------------
0025 
0026 //              ---------------------
0027 //              -- Class Interface --
0028 //              ---------------------
0029 
0030 class DTTimeUnits {
0031 public:
0032   enum type { counts, ns };
0033 
0034   /** Destructor
0035    */
0036   virtual ~DTTimeUnits();
0037 
0038 private:
0039   /** Constructor
0040    */
0041   DTTimeUnits();
0042   /** Operations
0043    */
0044   ///
0045 };
0046 
0047 #endif  // DTTimeUnits_H