]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/UNICOR/AliUnicorAnalSingle.h
Make some calculations optional for HLT
[u/mrichter/AliRoot.git] / PWG2 / UNICOR / AliUnicorAnalSingle.h
1 #ifndef ALIUNICORANALSINGLE_H
2 #define ALIUNICORANALSINGLE_H
3
4 /* Copyright(c) 1998-2048, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6 /* $Id$ */
7
8 // Author: Dariusz Miskowiec <mailto:d.miskowiec@gsi.de> 2007
9
10 //=============================================================================
11 // single particle analyzer
12 //=============================================================================
13
14 #include "AliUnicorAnal.h"
15 class AliUnicorEvent;
16 class AliUnicorHN;
17
18 //=============================================================================
19 class AliUnicorAnalSingle : public AliUnicorAnal {
20    
21  public:
22   AliUnicorAnalSingle(Char_t *nam="single", 
23               Double_t emi=-1, Double_t ema=1, 
24               Int_t pid=0);                       // constructor
25   virtual ~AliUnicorAnalSingle(){}                        // destructor
26   void Process(AliUnicorEvent *ev);                       // fill histograms
27
28  protected:
29   Int_t    fPid;                                  // pid; 0 means all
30   Double_t fMass;                                 // mass (if pid!=0)
31
32   ClassDef(AliUnicorAnalSingle,1)
33 };
34 //=============================================================================
35 #endif