]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/AliEventPoolOTF.h
Commenting out debug printouts
[u/mrichter/AliRoot.git] / ANALYSIS / AliEventPoolOTF.h
CommitLineData
2d0a3a45 1#ifndef ALIEVENTPOOLOTF_H
2#define ALIEVENTPOOLOTF_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
8
9// Realisation of an AliVEventPool via
10// on the flight (OTF) generation of the bin using AliTagAnalysis.
11// Author Andreas Morsch
12// andreas.morsch@cern.ch
13
14#include <AliVEventPool.h>
15class AliRunTagCuts;
16class AliLHCTagCuts;
17class AliDetectorTagCuts;
18class AliEventTagCuts;
19class AliTagAnalysis;
20
21class AliEventPoolOTF : public AliVEventPool
22{
23 public:
24 AliEventPoolOTF();
c08c82c3 25 AliEventPoolOTF(const char* name, const char* title = "AOD");
2d0a3a45 26
27 virtual ~AliEventPoolOTF() {;}
28 // Interface
29 virtual TChain* GetNextChain();
30 virtual void GetCurrentBin(Float_t* /*bin*/);
31 virtual Int_t GetDimension();
32 virtual void Init();
33 virtual void SetMultiplicityBin(Int_t min, Int_t max, Int_t step)
34 {fMultMin = min; fMultMax = max; fMultStep = step;}
35 //
a6e0ebfe 36 void SetTagDirectory(const char* dirname) {fTagDirectory = dirname;};
37 virtual Int_t BinNumber() const {return fBinNumber;}
a065d8ed 38
2d0a3a45 39 private:
40 AliEventPoolOTF(const AliEventPoolOTF& obj);
41 AliEventPoolOTF& operator=(const AliEventPoolOTF& other);
42 protected:
43 AliTagAnalysis* fTagAnalysis; // Pointer to tag analysis
44 AliRunTagCuts* fRunCuts; // Run cuts
45 AliLHCTagCuts* fLHCCuts; // LHC cuts
46 AliDetectorTagCuts* fDetectorCuts; // Detector cuts
47 AliEventTagCuts* fEventCuts; // Event cuts
a6e0ebfe 48 const char* fTagDirectory; // Directory with local tag files
2d0a3a45 49 Int_t fMultMin; // Minimum multiplicity
50 Int_t fMultMax; // Maximum multiplicity
51 Int_t fMultStep; // Multiplicity step-size
52 Int_t fMultiplicity; // Current multiplicity
a065d8ed 53 Int_t fBinNumber; // Current bin number
54
2d0a3a45 55 ClassDef(AliEventPoolOTF, 0);
56};
57
58#endif