00001 #ifndef EVENT_LOOP_TEVENT_SVC_H
00002 #define EVENT_LOOP_TEVENT_SVC_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00016
00017
00018
00019 #include <EventLoop/Global.h>
00020
00021 #include <EventLoop/Algorithm.h>
00022
00023 namespace xAOD
00024 {
00025 class TEvent;
00026 class TStore;
00027 }
00028
00029 namespace EL
00030 {
00031 class TEventSvc : public Algorithm
00032 {
00033
00034
00035
00036
00038 public:
00039 static const std::string name;
00040
00041
00044 public:
00045 void testInvariant () const;
00046
00047
00050 public:
00051 TEventSvc ();
00052
00053
00056 public:
00057 ~TEventSvc ();
00058
00059
00064 public:
00065 xAOD::TEvent *event () const;
00066
00067
00072 public:
00073 xAOD::TStore *store () const;
00074
00075
00076
00077
00078
00079
00080
00083 public:
00084 virtual const char *GetName () const override;
00085
00086
00093 private:
00094 virtual StatusCode fileExecute () override;
00095
00096
00104 private:
00105 virtual StatusCode histInitialize () override;
00106
00107
00113 private:
00114 virtual StatusCode changeInput (bool firstFile) override;
00115
00116
00121 private:
00122 virtual StatusCode execute () override;
00123
00124
00131 private:
00132 virtual StatusCode finalize () override;
00133
00134
00135
00136
00137
00138
00139
00141 private:
00142 xAOD::TEvent *m_event;
00143 private:
00144 xAOD::TStore *m_store;
00145
00147 private:
00148 bool m_useStats;
00149
00150
00151 #pragma GCC diagnostic push
00152 #pragma GCC diagnostic ignored "-Wpragmas"
00153 #pragma GCC diagnostic ignored "-Wunknown-pragmas"
00154 #pragma GCC diagnostic ignored "-Winconsistent-missing-override"
00155 ClassDef(TEventSvc, 1);
00156 #pragma GCC diagnostic pop
00157 };
00158 }
00159
00160 #endif