]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/UNICOR/AliUnicorAnalPtfluc.h
8f9fad98e7001bb7772ab927dc276d99ef8e8454
[u/mrichter/AliRoot.git] / PWG2 / UNICOR / AliUnicorAnalPtfluc.h
1 #ifndef ALIUNICORANALPTFLUC_H
2 #define ALIUNICORANALPTFLUC_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> 2005
9
10 //=============================================================================
11 // pt-fluctuations analyzer
12 //=============================================================================
13
14 #include "AliUnicorAnal.h"
15 class AliUnicorEvent;
16 class AliUnicorHN;
17
18 //=============================================================================
19 class AliUnicorAnalPtfluc : public AliUnicorAnal {
20    
21  public:
22   AliUnicorAnalPtfluc(Char_t *nam="correl", Int_t pid0=0, Int_t pid1=0);  // constructor
23   virtual ~AliUnicorAnalPtfluc(){}                                        // destructor
24   void Process(Int_t tmr, AliUnicorEvent *ev0, AliUnicorEvent *ev1);              // process event(s)
25
26  protected:
27   Int_t    fPid0;                       // particle species 0
28   Int_t    fPid1;                       // particle species 1
29   ClassDef(AliUnicorAnalPtfluc,1)
30 };
31 //=============================================================================
32 #endif