]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTrigger.h
Removing quick code hack and unnecessary methods. Now have a much cleaner implementat...
[u/mrichter/AliRoot.git] / MUON / AliMUONTrigger.h
CommitLineData
3b2353d8 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/// \ingroup sim
10/// \class AliMUONTrigger
829425a5 11/// \brief MUON trigger detector class
58e8f326 12// Author: E. Lopez Torres
13
3b2353d8 14
15#include "AliTriggerDetector.h"
16
445096c0 17class AliMUONVTriggerStore;
18
3b2353d8 19class AliMUONTrigger : public AliTriggerDetector
20{
21 public:
22 AliMUONTrigger(); // constructor
71a2d3aa 23 virtual ~AliMUONTrigger(); // destructor
3b2353d8 24 virtual void CreateInputs();
25 virtual void Trigger();
26
445096c0 27private:
28 /// Not implemented
29 AliMUONTrigger(const AliMUONTrigger&);
30 /// Not implemented
31 AliMUONTrigger& operator=(const AliMUONTrigger&);
32
33 AliMUONVTriggerStore* fTriggerStore; //!< trigger store
34
3b2353d8 35 ClassDef(AliMUONTrigger,1) // MUON Trigger Detector class
36};
37#endif
38
39
40
41
42
43
44
45