]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALJetFinderInputPrep.h
Corrected memcpy arguments to avoid copying of uninitialized memory
[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);
30 AliEMCALJetFinderInput* GetJetFinderInput(){return &fInputObject;}
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
36 ClassDef(AliEMCALJetFinderInputPrep,1)
37
38};
39#endif