]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliJetAnalysis.h
Jet analysis class first commit (G. Contreras, M. Lopez, A. Morsch).
[u/mrichter/AliRoot.git] / JETAN / AliJetAnalysis.h
CommitLineData
62567a80 1#ifndef ALIJETANALYSIS_H
2#define ALIJETANALYSIS_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7
8//---------------------------------------------------------------------
9// JetAnalysis class
10// Perform Jet Analysis
11// Author: amdreas.morsch@cern.ch
12//---------------------------------------------------------------------
13#include <TObject.h>
14class AliJetAnalysis : public TObject
15{
16 public:
17
18 AliJetAnalysis();
19 ~AliJetAnalysis(){;}
20
21 void Analyse();
22 // Setter
23 void SetDirectory(char* directory) {fDirectory = directory;}
24 void SetEventRange(Int_t imin, Int_t imax) {fEventMin = imin; fEventMax = imax;}
25 void SetRunRange(Int_t imin, Int_t imax) {fRunMin = imin; fRunMax = imax;}
26 private:
27 char* fDirectory; // Directory
28 Int_t fEventMin; // Minimum event number
29 Int_t fEventMax; // Maximum event number
30 Int_t fRunMin; // Minimum run number
31 Int_t fRunMax; // Maximum run number
32
33
34 ClassDef(AliJetAnalysis,1)
35};
36
37#endif