]> git.uio.no Git - u/mrichter/AliRoot.git/blob - VZERO/AliVZEROTrigger.h
Fix for #84624: Problem in TPC cluster map
[u/mrichter/AliRoot.git] / VZERO / AliVZEROTrigger.h
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    virtual        ~AliVZEROTrigger(){}  // destructor
20    virtual void    CreateInputs();
21    virtual void    Trigger();
22
23    ClassDef( AliVZEROTrigger, 2 )  // VZERO Trigger Detector class
24 };
25
26 #endif // AliVZEROTrigger_H
27
28