]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALJetFinderOutput.h
Moving to the new VMC naming convention
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALJetFinderOutput.h
CommitLineData
f7d5860b 1#ifndef ALIEMCALJETFINDEROUTPUT_H
2#define ALIEMCALJETFINDEROUTPUT_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//_________________________________________________________________________
10// Output object for jetfinder
11//
12//*-- Author: Renan Cabrera (LBL)
13// Mark Horner (LBL/UCT)
14//
15
16
17#include "TObject.h"
18#include "TParticle.h"
f7d5860b 19#include "AliEMCALParton.h"
20#include "AliEMCALJet.h"
21#include "AliEMCALJetFinderTypes.h"
22
23class AliEMCALJetFinderOutput : public TObject
24{
25
26 public:
27 AliEMCALJetFinderOutput();
28 ~AliEMCALJetFinderOutput();
29 void Reset(AliEMCALJetFinderResetType_t resettype);
30 void AddJet(AliEMCALJet *jet);
31 void AddParton(AliEMCALParton *parton);
32 void AddParticle(TParticle *particle);
33 void SetDebug(Int_t debug){fDebug = debug;}
34 AliEMCALJet* GetJet(Int_t jetID);
35 Int_t GetNJets(){return fNJets;}
36 AliEMCALParton* GetParton(Int_t partonID);
37 Int_t GetNPartons(){return fNPartons;}
38 TParticle* GetParticle(Int_t particleID);
39 Int_t GetNParticles(){return fNParticles;}
40
41 private:
42 void InitArrays();
42460d75 43 AliEMCALJet fJetsArray[10]; //
44 AliEMCALParton fPartonsArray[4]; //
45 Int_t fNPartons; // Number of Partons actually stored
46 Int_t fNJets; // Number of jets actually stored
47 TParticle fParticlesArray[2000]; //
48 Int_t fNParticles; // Number of particles actually stored
49 Int_t fNMaxJets; // Maximum number of jets
50 Int_t fNMaxParticles; // Maximum number of primary particles
51 Int_t fNMaxPartons; // Maximum number of primary particles
52 Int_t fDebug; // Debug level
53 Bool_t fInitialised; // stores whether or not the arrays have been initialised
f7d5860b 54
42460d75 55 ClassDef(AliEMCALJetFinderOutput,2)
f7d5860b 56};
57#endif