]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/UNICOR/AliUnicorAnalPtfluc.h
Update of the ITS PID response (F.Prino, M.Chojnacki, E.Biolcati)
[u/mrichter/AliRoot.git] / PWG2 / UNICOR / AliUnicorAnalPtfluc.h
CommitLineData
621688e4 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"
15class AliUnicorEvent;
16class AliUnicorHN;
17
18//=============================================================================
19class AliUnicorAnalPtfluc : public AliUnicorAnal {
20
21 public:
c6fc7f72 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 * const ev0, AliUnicorEvent * const ev1); // process event(s)
621688e4 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