CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoLuminosity/TCPReceiver/interface/TimeStamp.h

Go to the documentation of this file.
00001 #ifndef __HLX_TIMESTAMP_H__
00002 #define __HLX_TIMESTAMP_H__
00003 
00004 #include <string>
00005 #include <ctime>
00006 
00007 namespace HCAL_HLX{
00008   
00009   class TimeStamp{
00010   public:
00011     std::string TimeStampLong( time_t rawtime = 0 );
00012     std::string TimeStampYYYYMM( time_t  rawtime = 0);
00013     std::string TimeStampYYYYMMDD( time_t  rawtime = 0);
00014   };
00015 }
00016 
00017 #endif