13 class MyRun :
public TTask {
17 MyRun(
const char *name,
const char *title);
19 void Exec(Option_t *option=
"");
24 class MyEvent :
public TTask {
28 MyEvent(
const char *name,
const char *title);
29 virtual ~MyEvent() {;}
30 void Exec(Option_t *option=
"");
35 class MyGeomInit :
public TTask {
39 MyGeomInit(
const char *name,
const char *title);
40 virtual ~MyGeomInit() {;}
41 void Exec(Option_t *option=
"");
43 ClassDef(MyGeomInit,1)
46 class MyMaterialInit :
public TTask {
50 MyMaterialInit(
const char *name,
const char *title);
51 virtual ~MyMaterialInit() {;}
52 void Exec(Option_t *option=
"");
54 ClassDef(MyMaterialInit,1)
57 class MyTracker :
public TTask {
61 MyTracker(
const char *name,
const char *title);
62 virtual ~MyTracker() {;}
63 void Exec(Option_t *option=
"");
68 class MyRecTPC :
public TTask {
72 MyRecTPC(
const char *name,
const char *title);
73 virtual ~MyRecTPC() {;}
74 void Exec(Option_t *option=
"");
80 class MyRecITS :
public TTask {
84 MyRecITS(
const char *name,
const char *title);
85 virtual ~MyRecITS() {;}
86 void Exec(Option_t *option=
"");
92 class MyRecMUON :
public TTask {
96 MyRecMUON(
const char *name,
const char *title);
97 virtual ~MyRecMUON() {;}
98 void Exec(Option_t *option=
"");
100 ClassDef(MyRecMUON,1)
104 class MyRecPHOS :
public TTask {
108 MyRecPHOS(
const char *name,
const char *title);
109 virtual ~MyRecPHOS() {;}
110 void Exec(Option_t *option=
"");
112 ClassDef(MyRecPHOS,1)
116 class MyRecRICH :
public TTask {
120 MyRecRICH(
const char *name,
const char *title);
121 virtual ~MyRecRICH() {;}
122 void Exec(Option_t *option=
"");
124 ClassDef(MyRecRICH,1)
128 class MyRecTRD :
public TTask {
132 MyRecTRD(
const char *name,
const char *title);
133 virtual ~MyRecTRD() {;}
134 void Exec(Option_t *option=
"");
140 class MyRecGlobal :
public TTask {
144 MyRecGlobal(
const char *name,
const char *title);
145 virtual ~MyRecGlobal() {;}
146 void Exec(Option_t *option=
"");
148 ClassDef(MyRecGlobal,1)
154 MyRun::MyRun(
const char *name,
const char *title)
159 void MyRun::Exec(Option_t * )
161 printf(
"MyRun executing\n");
166 MyEvent::MyEvent(
const char *name,
const char *title)
171 void MyEvent::Exec(Option_t * )
173 printf(
"MyEvent executing\n");
178 MyGeomInit::MyGeomInit(
const char *name,
const char *title)
183 void MyGeomInit::Exec(Option_t * )
185 printf(
"MyGeomInit executing\n");
190 MyMaterialInit::MyMaterialInit(
const char *name,
const char *title)
195 void MyMaterialInit::Exec(Option_t * )
197 printf(
"MyMaterialInit executing\n");
202 MyTracker::MyTracker(
const char *name,
const char *title)
207 void MyTracker::Exec(Option_t * )
209 printf(
"MyTracker executing\n");
214 MyRecTPC::MyRecTPC(
const char *name,
const char *title)
219 void MyRecTPC::Exec(Option_t * )
221 printf(
"MyRecTPC executing\n");
226 MyRecITS::MyRecITS(
const char *name,
const char *title)
231 void MyRecITS::Exec(Option_t * )
233 printf(
"MyRecITS executing\n");
238 MyRecMUON::MyRecMUON(
const char *name,
const char *title)
243 void MyRecMUON::Exec(Option_t * )
245 printf(
"MyRecMUON executing\n");
250 MyRecPHOS::MyRecPHOS(
const char *name,
const char *title)
255 void MyRecPHOS::Exec(Option_t * )
257 printf(
"MyRecPHOS executing\n");
262 MyRecRICH::MyRecRICH(
const char *name,
const char *title)
267 void MyRecRICH::Exec(Option_t * )
269 printf(
"MyRecRICH executing\n");
274 MyRecTRD::MyRecTRD(
const char *name,
const char *title)
279 void MyRecTRD::Exec(Option_t * )
281 printf(
"MyRecTRD executing\n");
286 MyRecGlobal::MyRecGlobal(
const char *name,
const char *title)
291 void MyRecGlobal::Exec(Option_t * )
293 printf(
"MyRecGlobal executing\n");