]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONGlobalTrigger.h
Remove Process_t
[u/mrichter/AliRoot.git] / MUON / AliMUONGlobalTrigger.h
1 #ifndef ALIMUONGLOBALTRIGGER_H
2 #define ALIMUONGLOBALTRIGGER_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /*    */
8
9 #include <TObject.h>
10
11 class AliMUONGlobalTrigger : public TObject {
12  public:
13   Int_t fSinglePlusLpt;  // Number of Single Plus Low pt 
14   Int_t fSinglePlusHpt;  // Number of Single Plus High pt 
15   Int_t fSinglePlusApt;  // Number of Single Plus All pt 
16   Int_t fSingleMinusLpt; // Number of Single Minus Low pt
17   Int_t fSingleMinusHpt; // Number of Single Minus High pt 
18   Int_t fSingleMinusApt; // Number of Single Minus All pt
19   Int_t fSingleUndefLpt; // Number of Single Undefined Low pt
20   Int_t fSingleUndefHpt; // Number of Single Undefined High pt 
21   Int_t fSingleUndefApt; // Number of Single Undefined All pt
22   Int_t fPairUnlikeLpt;  // Number of Unlike sign pair Low pt
23   Int_t fPairUnlikeHpt;  // Number of Unlike sign pair High pt
24   Int_t fPairUnlikeApt;  // Number of Unlike sign pair All pt
25   Int_t fPairLikeLpt;    // Number of Like sign pair Low pt
26   Int_t fPairLikeHpt;    // Number of Like sign pair High pt
27   Int_t fPairLikeApt;    // Number of Like sign pair All pt
28
29  public:
30   AliMUONGlobalTrigger();
31   AliMUONGlobalTrigger(Int_t *singlePlus, Int_t *singleMinus,
32                        Int_t *singleUndef, Int_t *pairUnlike, Int_t *pairLike);
33   virtual ~AliMUONGlobalTrigger(){;}
34  
35   ClassDef(AliMUONGlobalTrigger,1)  // reconstructed Global Trigger object    
36 };
37 #endif
38
39
40
41
42
43