]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/UNICOR/AliDAnalPtfluc.h
Added seperate methods to write histograms to a file when not using the task framework
[u/mrichter/AliRoot.git] / PWG2 / UNICOR / AliDAnalPtfluc.h
1 // Author: Dariusz Miskowiec <mailto:d.miskowiec@gsi.de> 2005
2
3 //=============================================================================
4 // pt-fluctuations analyzer
5 //=============================================================================
6
7 #ifndef ALIDANALPTFLUC_H
8 #define ALIDANALPTFLUC_H
9
10 #include "AliDAnal.h"
11 class AliDEvent;
12 class AliDHN;
13
14 //=============================================================================
15 class AliDAnalPtfluc : public AliDAnal {
16    
17  public:
18   AliDAnalPtfluc(Char_t *nam="correl", Int_t pid0=0, Int_t pid1=0);  // constructor
19   virtual ~AliDAnalPtfluc(){}                                        // destructor
20   void Process(Int_t tmr, AliDEvent *ev0, AliDEvent *ev1);              // process event(s)
21
22  protected:
23   Int_t    fPid0;                       // particle species 0
24   Int_t    fPid1;                       // particle species 1
25   ClassDef(AliDAnalPtfluc,1)
26 };
27 //=============================================================================
28 #endif