Line data Source code
1 : #ifndef ALITRDTRIGGER_H
2 : #define ALITRDTRIGGER_H
3 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 : * See cxx source for full Copyright notice */
5 :
6 : /* $Id: AliTRDTrigger.h 31443 2009-03-12 14:56:21Z cblume $ */
7 :
8 : ////////////////////////////////////////////////////////////////////////////
9 : // //
10 : // TRD trigger interface class to CTP //
11 : // from this class the two classes for L0 (pretrigger) and //
12 : // L1 (GTU) are called
13 : // //
14 : ////////////////////////////////////////////////////////////////////////////
15 :
16 : #include "AliTriggerDetector.h"
17 :
18 : class AliTRDTrigger : public AliTriggerDetector {
19 :
20 : public:
21 : AliTRDTrigger();
22 : ~AliTRDTrigger();
23 :
24 : virtual void AssignInputs(const TObjArray& inputs);
25 : virtual void CreateInputs();
26 : virtual void Trigger();
27 :
28 : private:
29 : TObjArray fTriggers; // array of all contributing triggers
30 :
31 38 : ClassDef(AliTRDTrigger, 1);
32 :
33 : };
34 :
35 : #endif
|