]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/jetfinder/AliEMCALJetFinderInputPrep.cxx
752b8e9ea23916a192eca9e80808a2d1f682eb7f
[u/mrichter/AliRoot.git] / EMCAL / jetfinder / AliEMCALJetFinderInputPrep.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 //_________________________________________________________________________
19 //  Base Class for JetFinder Input Preparation
20 // --
21 //*-- Author: Mark Horner (LBL/UCT)
22 // --
23
24
25
26 #include <stdio.h>
27 #include <TClonesArray.h>
28 #include <TParticle.h>
29 #include <TTree.h>
30 #include "Riostream.h"
31 //.....................
32 #include "AliEMCALJet.h"
33 #include "AliEMCALParton.h"
34 #include "AliEMCALJetFinderInputPrep.h"
35 #include "AliEMCALJetFinderInput.h"
36
37 ClassImp(AliEMCALJetFinderInputPrep)
38
39 //________________________________________________________________________
40 AliEMCALJetFinderInputPrep::AliEMCALJetFinderInputPrep()
41 {
42         // Default constructor
43 if (fDebug > 0) Info("AliEMCALJetFinderInputPrep","Beginning Constructor");     
44   fDebug = 0;
45   fPythiaComparison = 0; // This requires lots of checks 
46   fInputObject.SetDebug(0);
47 }
48 AliEMCALJetFinderInputPrep::~AliEMCALJetFinderInputPrep()
49 {
50
51 }
52
53 Int_t AliEMCALJetFinderInputPrep::FillFromFile(TString * /*filename*/,
54                                                AliEMCALJetFinderFileType_t /*fileType*/,
55                                                Int_t /*EventNumber*/)
56 {
57   return 0;
58 }
59 void AliEMCALJetFinderInputPrep::Reset(AliEMCALJetFinderResetType_t resettype)
60
61         //  Reset data
62 if (fDebug > 1) Info("Reset","Beginning Reset");
63         
64         switch (resettype){
65                 case kResetData:
66                         fInputObject.Reset(resettype);
67                         break;
68                 case kResetTracks:
69                         fInputObject.Reset(kResetTracks);
70                         break;
71                 case kResetDigits:
72                         fInputObject.Reset(kResetDigits);
73                         break;
74                 case kResetParameters:
75                         break;
76                 case kResetAll:
77                         fInputObject.Reset(kResetAll);
78                         break;
79                 case kResetPartons:
80                   Warning("FillFromFile", "kResetPartons not implemented") ; 
81                   break;
82                case kResetParticles:
83                  Warning("FillFromFile", "kResetParticles not implemented") ; 
84                  break;
85                case kResetJets:
86                  Warning("FillFromFile", "kResetJets not implemented") ; 
87                  break;
88         }// end switch
89
90 }
91
92
93