]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALJetFinderInputPrep.h
Reduced convention violations
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALJetFinderInputPrep.h
CommitLineData
f7d5860b 1#ifndef ALIEMCALJETFINDERINPUTPREP_H
2#define ALIEMCALJETFINDERINPUTPREP_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// Base class for jetfinder input preparation
11//
12//*-- Author: Mark Horner (LBL/UCT)
13//
14
15
16
17#include "TTask.h"
18#include "AliEMCALJetFinderInput.h"
19#include "AliEMCALJetFinderTypes.h"
20
21class AliEMCALJetFinderInputPrep : public TTask
22{
23
24 public:
25 AliEMCALJetFinderInputPrep();
26 ~AliEMCALJetFinderInputPrep();
27 void Reset(AliEMCALJetFinderResetType_t resettype);
28 void SetDebug(Int_t debug = 0){fDebug = debug; fInputObject.SetDebug(debug-2); }
29 Int_t FillFromFile(TString *filename, AliEMCALJetFinderFileType_t filetype, Int_t EventNumber);
44f59d68 30 AliEMCALJetFinderInput* GetJetFinderInput() {return &fInputObject;}
f7d5860b 31 protected:
32 Int_t fDebug; // The debug flag to be used for messages
33 AliEMCALJetFinderInput fInputObject; // The JetFinder input object to be filled
34 private:
35
44f59d68 36 ClassDef(AliEMCALJetFinderInputPrep,2)
f7d5860b 37
38};
39#endif