00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #ifndef ATLFAST_DEFAULTRECONTRUCTEDPARTICLEMAKER_H
00044 #define ATLFAST_DEFAULTRECONTRUCTEDPARTICLEMAKER_H
00045
00046
00047
00048
00049
00050 #define DEFAULT_particleType 11
00051 #define DEFAULT_mcPtMin 0.0
00052 #define DEFAULT_mcEtaMax 100.0
00053 #define DEFAULT_PtMin 5.0
00054 #define DEFAULT_EtaMax 2.5
00055 #define DEFAULT_doSmearing true
00056 #define DEFAULT_MC_eventLocation "/Event/McEventCollection"
00057 #define DEFAULT_commonDataLocation "/Event/AtlfastCommonData"
00058 #define DEFAULT_outputLocation "/Event/AtlfastReconstructedParticle"
00059 #define DEFAULT_muSmearKey 1
00060
00061
00062
00063
00064 #include <vector>
00065 #include <string>
00066
00067
00068 #include "GaudiKernel/ISvcLocator.h"
00069 #include "GaudiKernel/IAlgorithm.h"
00070 #include "GaudiKernel/Algorithm.h"
00071 #include "GaudiKernel/MsgStream.h"
00072 #include "GaudiKernel/DataObject.h"
00073
00074
00075 #include "CLHEP/Vector/LorentzVector.h"
00076 #include "HepMC/GenEvent.h"
00077 #include "HepMC/GenParticle.h"
00078
00079
00080 #include "AtlfastCode/ReconstructedParticle.h"
00081 #include "AtlfastCode/ReconstructedParticleCollection.h"
00082 #include "AtlfastCode/ISmearer.h"
00083 #include "AtlfastCode/TesIO.h"
00084 #include "AtlfastCode/CommonData.h"
00085
00086 namespace HepMC_helper{
00087 class IMCselector;
00088 }
00089
00090 namespace Atlfast {
00091
00101 class DefaultReconstructedParticleMaker :
00102 public virtual Algorithm
00103 {
00104
00105 public:
00106
00107
00108
00109
00111 DefaultReconstructedParticleMaker(
00112 const std::string& name,
00113 ISvcLocator* pSvcLocator
00114 );
00116 virtual ~DefaultReconstructedParticleMaker();
00117
00118
00119
00120
00121
00123 virtual StatusCode initialize() ;
00125 virtual StatusCode execute() ;
00127 virtual StatusCode finalize() ;
00128
00129
00130 private:
00131
00132
00133
00134
00135
00136 typedef std::vector<HepMC::GenParticle*> t_MC_particleCollection ;
00137 typedef std::vector<HepMC::GenParticle*>::iterator t_MC_particleIterator ;
00138
00139
00140
00141
00142
00143 bool m_notInit;
00144
00145
00147 int m_particleType;
00149 double m_mcPtMin ;
00151 double m_mcEtaMax ;
00152
00153
00155 double m_PtMin;
00157 double m_EtaMax;
00158
00160 bool m_doSmearing;
00161
00162
00164 std::string m_MC_eventLocation ;
00166 std::string m_commonDataLocation ;
00168 std::string m_outputLocation ;
00169
00170
00172 int m_muSmearKey;
00173
00174
00175
00176
00179 HepMC_helper::IMCselector* m_ncutter ;
00180
00181
00182
00183
00184
00185
00190 ISmearer* m_smearer;
00191
00195 ReconstructedParticle * lnkReconstructedParticle;
00196
00197
00198
00200
00201
00202 TesIO* m_tesIO;
00203
00205 void getSmearer(int lumi, int seed, MsgStream& log );
00207 virtual ReconstructedParticle* create( MsgStream&, const HepMC::GenParticle* );
00209 virtual bool isAcceptable( MsgStream&, const ReconstructedParticle* );
00210
00211 };
00212
00213
00214 }
00215
00216 #endif
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228