]> git.uio.no Git - u/mrichter/AliRoot.git/blob - UNICOR/AliDAnalPtfluc.h
Fixing compilation errors
[u/mrichter/AliRoot.git] / UNICOR / AliDAnalPtfluc.h
1 // Author: Dariusz Miskowiec <mailto:d.miskowiec@gsi.de> 2005
2
3 #ifndef ALIDANALPTFLUC_H
4 #define ALIDANALPTFLUC_H
5
6 #include "AliDAnal.h"
7 class AliDEvent;
8 class AliDHN;
9
10 //=============================================================================
11 class AliDAnalPtfluc : public AliDAnal {
12    
13  public:
14   AliDAnalPtfluc(Char_t *nam="correl", Int_t pid0=0, Int_t pid1=0);  // constructor
15   virtual ~AliDAnalPtfluc(){}                                        // destructor
16   void Process(Int_t tmr, AliDEvent *ev0, AliDEvent *ev1);              // process event(s)
17
18  protected:
19   Int_t    fPid0;                       // particle species 0
20   Int_t    fPid1;                       // particle species 1
21   ClassDef(AliDAnalPtfluc,1)
22 };
23 //=============================================================================
24 #endif