Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:18

0001 #ifndef FastSimulation_Particle_makeParticle_h
0002 #define FastSimulation_Particle_makeParticle_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     FastSimulation/Particle
0006 // Class  :     makeParticle
0007 //
0008 /**\class makeParticle makeParticle.h "FastSimulation/Particle/interface/makeParticle.h"
0009 
0010  Description: functions to create RawParticle from PDG ids
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Christopher Jones
0018 //         Created:  Mon, 04 Mar 2019 17:15:34 GMT
0019 //
0020 
0021 // system include files
0022 #include "DataFormats/Math/interface/LorentzVector.h"
0023 #include "SimGeneral/HepPDTRecord/interface/ParticleDataTable.h"
0024 
0025 // user include files
0026 
0027 // forward declarations
0028 class RawParticle;
0029 
0030 RawParticle makeParticle(HepPDT::ParticleDataTable const*, int id, const math::XYZTLorentzVector& p);
0031 RawParticle makeParticle(HepPDT::ParticleDataTable const*,
0032                          int id,
0033                          const math::XYZTLorentzVector& p,
0034                          const math::XYZTLorentzVector& xStart);
0035 
0036 #endif