1 | /* ======================================================================== *\
|
---|
2 | !
|
---|
3 | ! *
|
---|
4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
---|
6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
---|
8 | ! *
|
---|
9 | ! * Permission to use, copy, modify and distribute this software and its
|
---|
10 | ! * documentation for any purpose is hereby granted without fee,
|
---|
11 | ! * provided that the above copyright notice appear in all copies and
|
---|
12 | ! * that both that copyright notice and this permission notice appear
|
---|
13 | ! * in supporting documentation. It is provided "as is" without express
|
---|
14 | ! * or implied warranty.
|
---|
15 | ! *
|
---|
16 | !
|
---|
17 | !
|
---|
18 | ! Author(s): Thomas Bretz 12/2000 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2003
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 | /////////////////////////////////////////////////////////////////////////////
|
---|
26 | //
|
---|
27 | // MTime
|
---|
28 | //
|
---|
29 | // A generalized MARS time stamp
|
---|
30 | //
|
---|
31 | //
|
---|
32 | // Version 1:
|
---|
33 | // ----------
|
---|
34 | // - first version
|
---|
35 | //
|
---|
36 | // Version 2:
|
---|
37 | // ----------
|
---|
38 | // - removed fTimeStamp[2]
|
---|
39 | //
|
---|
40 | /////////////////////////////////////////////////////////////////////////////
|
---|
41 | #include "MTime.h"
|
---|
42 |
|
---|
43 | #include <iomanip>
|
---|
44 |
|
---|
45 | #include "MLog.h"
|
---|
46 |
|
---|
47 | ClassImp(MTime);
|
---|
48 |
|
---|
49 | using namespace std;
|
---|
50 |
|
---|
51 | void MTime::Print(Option_t *) const
|
---|
52 | {
|
---|
53 | *fLog << GetDescriptor() << ": " << dec;
|
---|
54 | *fLog << setfill('0') << setw(2) << (int)fHour << ":";
|
---|
55 | *fLog << setfill('0') << setw(2) << (int)fMin << ":";
|
---|
56 | *fLog << setfill('0') << setw(2) << (int)fSec << ".";
|
---|
57 | *fLog << setfill('0') << setw(9) << fNanoSec << endl;
|
---|
58 | }
|
---|