| 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 <TTime.h>
|
|---|
| 46 |
|
|---|
| 47 | #include "MLog.h"
|
|---|
| 48 |
|
|---|
| 49 | ClassImp(MTime);
|
|---|
| 50 |
|
|---|
| 51 | using namespace std;
|
|---|
| 52 |
|
|---|
| 53 | void MTime::SetTime(const TTime &t)
|
|---|
| 54 | {
|
|---|
| 55 | SetTime((ULong_t)t);
|
|---|
| 56 | }
|
|---|
| 57 |
|
|---|
| 58 | void MTime::Print(Option_t *) const
|
|---|
| 59 | {
|
|---|
| 60 | *fLog << GetDescriptor() << ": " << dec << setfill('0');
|
|---|
| 61 | *fLog << setw(2) << (int)fHour << ":";
|
|---|
| 62 | *fLog << setw(2) << (int)fMin << ":";
|
|---|
| 63 | *fLog << setw(2) << (int)fSec << ".";
|
|---|
| 64 | *fLog << setw(9) << fNanoSec << endl;
|
|---|
| 65 | }
|
|---|