source: trunk/MagicSoft/Mars/mbase/MTime.cc@ 703

Last change on this file since 703 was 609, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 869 bytes
Line 
1/////////////////////////////////////////////////////////////////////////////
2// //
3// MTime //
4// //
5// A generalized MARS time stamp //
6// //
7/////////////////////////////////////////////////////////////////////////////
8
9#include "MTime.h"
10
11#include <iomanip.h>
12
13#include "MLog.h"
14
15ClassImp(MTime)
16
17void MTime::Print(Option_t *)
18{
19 fLog->setf(ios::showbase);
20 *fLog << "MTime Information: " << hex
21 << " " <<setfill('0') << setw(2) << fTimeStamp[0]
22 << " " <<setfill('0') << setw(2) << fTimeStamp[1] << endl << endl;
23}
24
Note: See TracBrowser for help on using the repository browser.