Line data Source code
1 : #ifndef ALIVZEROTrigger_H
2 : #define ALIVZEROTrigger_H
3 : // ---------------------
4 : // Class AliVZEROTrigger
5 : // ---------------------
6 : // Top class to simulate the VZERO trigger response
7 : // This class is only used for interface with AliTriggerDetector
8 : // Its create and Set Inputs of the CTP
9 : // The Calculation of the trigger response is done into AliVZEROTriggerSimulator
10 : //
11 :
12 :
13 : #include "AliTriggerDetector.h"
14 :
15 : class AliVZEROTrigger : public AliTriggerDetector
16 : {
17 : public:
18 : AliVZEROTrigger(); // constructor
19 24 : virtual ~AliVZEROTrigger(){} // destructor
20 : virtual void CreateInputs();
21 : virtual void Trigger();
22 :
23 198 : ClassDef( AliVZEROTrigger, 2 ) // VZERO Trigger Detector class
24 : };
25 :
26 : #endif // AliVZEROTrigger_H
27 :
28 :
|