Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:20

0001 #include "SimG4Core/CustomPhysics/interface/CustomParticle.h"
0002 
0003 // ######################################################################
0004 // ###                           CustomParticle                       ###
0005 // ######################################################################
0006 
0007 CustomParticle::CustomParticle(const G4String& aName,
0008                                G4double mass,
0009                                G4double width,
0010                                G4double charge,
0011                                G4int iSpin,
0012                                G4int iParity,
0013                                G4int iConjugation,
0014                                G4int iIsospin,
0015                                G4int iIsospin3,
0016                                G4int gParity,
0017                                const G4String& pType,
0018                                G4int lepton,
0019                                G4int baryon,
0020                                G4int encoding,
0021                                G4bool stable,
0022                                G4double lifetime,
0023                                G4DecayTable* decaytable)
0024     : G4ParticleDefinition(aName,
0025                            mass,
0026                            width,
0027                            charge,
0028                            iSpin,
0029                            iParity,
0030                            iConjugation,
0031                            iIsospin,
0032                            iIsospin3,
0033                            gParity,
0034                            pType,
0035                            lepton,
0036                            baryon,
0037                            encoding,
0038                            stable,
0039                            lifetime,
0040                            decaytable) {}