]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/UNICOR/AliUnicorAnalHighpt.h
Bug coreected in PTM gain array indexes
[u/mrichter/AliRoot.git] / PWG2 / UNICOR / AliUnicorAnalHighpt.h
1 #ifndef ALIUNICORANALHIGHPT_H
2 #define ALIUNICORANALHIGHPT_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> 2008
9
10 //=============================================================================
11 // high-pt correlation analyzer
12 //=============================================================================
13
14 #include "AliUnicorAnal.h"
15 class AliUnicorEvent;
16
17 //=============================================================================
18 class AliUnicorAnalHighpt : public AliUnicorAnal {
19    
20  public:
21   AliUnicorAnalHighpt(Char_t *nam="highpt", 
22               Double_t emi=-1, Double_t ema=1, 
23               Int_t pid0=0, Int_t pid1=0);   // constructor
24   virtual ~AliUnicorAnalHighpt(){}                   // destructor
25   void Process(AliUnicorEvent *ev0, AliUnicorEvent *ev1);    // process 1 (tru) or 2 (mix) events
26
27  protected:
28   Int_t    fPid0;                            // particle species 0
29   Int_t    fPid1;                            // particle species 1
30
31   ClassDef(AliUnicorAnalHighpt,1)
32 };
33 //=============================================================================
34 #endif