]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGCF/FEMTOSCOPY/UNICOR/AliUnicorAnalPtfluc.h
Fixes for wrong use of const causing PW.CAST_TO_QUALIFIED_TYPE defect in Coverity
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / 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(const char *nam="correl", Int_t pid0=0, Int_t pid1=0);    // constructor
23   virtual ~AliUnicorAnalPtfluc(){}                                          // destructor
24   void Process(Int_t tmr, AliUnicorEvent * const ev0, AliUnicorEvent * const 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