00001 #ifndef EVENT_LOOP_BATCH_SAMPLE_HH
00002 #define EVENT_LOOP_BATCH_SAMPLE_HH
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00017
00018
00019
00020 #include <EventLoop/Global.h>
00021
00022 #include <TObject.h>
00023 #include <SampleHandler/MetaObject.h>
00024
00025 namespace EL
00026 {
00027 struct BatchSample : public TObject
00028 {
00029
00030
00031
00032
00035 public:
00036 BatchSample ();
00037
00038
00041 public:
00042 ~BatchSample ();
00043
00044
00046 public:
00047 std::string name;
00048
00049
00051 public:
00052 SH::MetaObject meta;
00053
00054
00056 public:
00057 std::vector<std::string> files;
00058
00059
00062 public:
00063 UInt_t begin_segments, end_segments;
00064
00065
00066
00067
00068
00069
00070
00071 ClassDef(BatchSample, 1);
00072 };
00073 }
00074
00075 #endif