gdata
gEventDataCollectionHeader.h
Go to the documentation of this file.
1 #ifndef GEVENTHEADER_H
2 #define GEVENTHEADER_H 1
3 
12 #include "../gdataConventions.h"
13 #include "glogger.h"
14 #include <ctime>
15 #include <string>
16 
18 public:
28  GEventDataCollectionHeader(int n, int tid, GLogger *logger) : g4localEventNumber(n), threadID(tid), log(logger) {
29  timeStamp = assignTimeStamp();
30  log->debug(CONSTRUCTOR, "GEventDataCollectionHeader");
31  log->info(1, TPOINTITEM, " Event Number: ", g4localEventNumber);
32  log->info(1, TPOINTITEM, " Thread ID: ", threadID);
33  log->info(1, TPOINTITEM, " Time Stamp: ", timeStamp);
34  }
35 
40  log->debug(DESTRUCTOR, "GEventDataCollectionHeader");
41  }
42 
47  inline std::string const getTimeStamp() const { return timeStamp; }
48 
53  inline int getG4LocalEvn() const { return g4localEventNumber; }
54 
59  inline int getThreadID() const { return threadID; }
60 
61 private:
62  int g4localEventNumber;
63  int threadID;
64  GLogger * const log;
65 
73  std::string assignTimeStamp() {
74  time_t now = time(NULL);
75  struct tm *ptm = localtime(&now);
76  char buffer[32];
77  // Format: Mo, 15.06.2009 20:20:00
78  strftime(buffer, 32, "%a, %m.%d.%Y %H:%M:%S", ptm);
79  return std::string(buffer);
80  }
81 
82  std::string timeStamp;
83 };
84 
85 #endif
int getThreadID() const
Gets the thread ID.
int getG4LocalEvn() const
Gets the local event number.
std::string const getTimeStamp() const
Gets the timestamp.
GEventDataCollectionHeader(int n, int tid, GLogger *logger)
Constructs a GEventDataCollectionHeader.
~GEventDataCollectionHeader()
Destructor for GEventDataCollectionHeader.