]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MUON/AliMUONTrigger.h
Add a new variable, that is the radial position of the track at the end
[u/mrichter/AliRoot.git] / MUON / AliMUONTrigger.h
... / ...
CommitLineData
1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
4/* $Id$ */
5
6#ifndef ALIMUONTRIGGER_H
7#define ALIMUONTRIGGER_H
8
9// $Id$
10
11/// \ingroup sim
12/// \class AliMUONTrigger
13/// \brief MUON trigger detector class
14// Author: E. Lopez Torres
15
16
17#include "AliTriggerDetector.h"
18
19class AliMUONVTriggerStore;
20
21class AliMUONTrigger : public AliTriggerDetector
22{
23 public:
24 AliMUONTrigger(); // constructor
25 virtual ~AliMUONTrigger(); // destructor
26 virtual void CreateInputs();
27 virtual void Trigger();
28
29private:
30 /// Not implemented
31 AliMUONTrigger(const AliMUONTrigger&);
32 /// Not implemented
33 AliMUONTrigger& operator=(const AliMUONTrigger&);
34
35 AliMUONVTriggerStore* fTriggerStore; //!< trigger store
36
37 ClassDef(AliMUONTrigger,1) // MUON Trigger Detector class
38};
39#endif
40
41
42
43
44
45
46
47