]>
Commit | Line | Data |
---|---|---|
c8b1590d | 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 | // currently the Trigger() method calls the GTU tracking simulation and // | |
12 | // runs two example triggers, namely on a single high pt particle and // | |
13 | // on a jet. // | |
14 | // // | |
15 | //////////////////////////////////////////////////////////////////////////// | |
16 | ||
17 | #include "AliTriggerDetector.h" | |
18 | ||
19 | class AliTRDTrigger : public AliTriggerDetector { | |
20 | ||
21 | public: | |
22 | AliTRDTrigger(); | |
23 | ~AliTRDTrigger(); | |
24 | ||
25 | virtual void CreateInputs(); | |
26 | virtual void Trigger(); | |
27 | ||
28 | private: | |
29 | ||
30 | ClassDef(AliTRDTrigger, 1); | |
31 | ||
32 | }; | |
33 | ||
34 | #endif |