CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes | Static Private Attributes
CustomPhysicsList Class Reference

#include <CustomPhysicsList.h>

Inheritance diagram for CustomPhysicsList:

Public Member Functions

void ConstructParticle () override
 
void ConstructProcess () override
 
 CustomPhysicsList (const std::string &name, const edm::ParameterSet &p, bool useuni=false)
 
 ~CustomPhysicsList () override
 

Private Attributes

double dfactor
 
bool fHadronicInteraction
 
std::unique_ptr< CustomParticleFactoryfParticleFactory
 
edm::ParameterSet myConfig
 
std::string particleDefFilePath
 
std::string processDefFilePath
 

Static Private Attributes

static G4ThreadLocal std::unique_ptr< G4ProcessHelpermyHelper
 

Detailed Description

Definition at line 12 of file CustomPhysicsList.h.

Constructor & Destructor Documentation

CustomPhysicsList::CustomPhysicsList ( const std::string &  name,
const edm::ParameterSet p,
bool  useuni = false 
)

Definition at line 23 of file CustomPhysicsList.cc.

References dfactor, fHadronicInteraction, fParticleFactory, edm::ParameterSet::getParameter(), myConfig, myHelper, AlCaHLTBitMon_ParallelJobs::p, and particleDefFilePath.

25  : G4VPhysicsConstructor(name)
26 {
27  myConfig = p;
28  if(apinew) {
29  dfactor = p.getParameter<double>("DarkMPFactor");
30  fHadronicInteraction = p.getParameter<bool>("RhadronPhysics");
31  } else {
32  // this is left for backward compatibility
33  dfactor = p.getParameter<double>("dark_factor");
34  fHadronicInteraction = p.getParameter<bool>("rhadronPhysics");
35  }
36  edm::FileInPath fp = p.getParameter<edm::FileInPath>("particlesDef");
37  particleDefFilePath = fp.fullPath();
39  myHelper.reset(nullptr);
40 
41  edm::LogInfo("SimG4CoreCustomPhysics")
42  << "CustomPhysicsList: Path for custom particle definition file: \n"
43  <<particleDefFilePath << "\n" << " dark_factor= " << dfactor;
44 }
T getParameter(std::string const &) const
edm::ParameterSet myConfig
std::string particleDefFilePath
static G4ThreadLocal std::unique_ptr< G4ProcessHelper > myHelper
std::unique_ptr< CustomParticleFactory > fParticleFactory
CustomPhysicsList::~CustomPhysicsList ( )
override

Definition at line 46 of file CustomPhysicsList.cc.

46  {
47 }

Member Function Documentation

void CustomPhysicsList::ConstructParticle ( )
override

Definition at line 49 of file CustomPhysicsList.cc.

References fParticleFactory, and particleDefFilePath.

49  {
50  edm::LogInfo("SimG4CoreCustomPhysics")
51  << "===== CustomPhysicsList::ConstructParticle ";
52  fParticleFactory.get()->loadCustomParticles(particleDefFilePath);
53 }
std::string particleDefFilePath
std::unique_ptr< CustomParticleFactory > fParticleFactory
void CustomPhysicsList::ConstructProcess ( )
override

Definition at line 55 of file CustomPhysicsList.cc.

References SimDataFormats::CaloAnalysis::cp, dfactor, fHadronicInteraction, fParticleFactory, CustomParticle::GetCloud(), CustomParticle::GetSpectator(), GeV, myConfig, myHelper, and CustomPDGParser::s_isRHadron().

55  {
56 
57  edm::LogInfo("SimG4CoreCustomPhysics")
58  <<"CustomPhysicsList: adding CustomPhysics processes "
59  << "for the list of particles";
60 
61  G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
62 
63  for(auto particle : fParticleFactory.get()->GetCustomParticles()) {
64  CustomParticle* cp = dynamic_cast<CustomParticle*>(particle);
65  if(cp) {
66  G4ProcessManager* pmanager = particle->GetProcessManager();
67  edm::LogInfo("SimG4CoreCustomPhysics")
68  <<"CustomPhysicsList: " << particle->GetParticleName()
69  <<" PDGcode= " << particle->GetPDGEncoding()
70  << " Mass= " << particle->GetPDGMass()/GeV <<" GeV.";
71  if(pmanager) {
72  if(particle->GetPDGCharge() != 0.0) {
73  ph->RegisterProcess(new G4hMultipleScattering, particle);
74  ph->RegisterProcess(new G4hIonisation, particle);
75  }
76  if(cp->GetCloud() && fHadronicInteraction &&
77  CustomPDGParser::s_isRHadron(particle->GetPDGEncoding())) {
78  edm::LogInfo("SimG4CoreCustomPhysics")
79  <<"CustomPhysicsList: " << particle->GetParticleName()
80  <<" CloudMass= " <<cp->GetCloud()->GetPDGMass()/GeV
81  <<" GeV; SpectatorMass= " << cp->GetSpectator()->GetPDGMass()/GeV<<" GeV.";
82 
83  if(!myHelper.get()) { myHelper.reset(new G4ProcessHelper(myConfig, fParticleFactory.get())); }
84  pmanager->AddDiscreteProcess(new FullModelHadronicProcess(myHelper.get()));
85  }
86  if(particle->GetParticleType()=="darkpho"){
88  pmanager->AddDiscreteProcess(darkGamma);
89  }
90  }
91  }
92  }
93 }
const double GeV
Definition: MathUtil.h:16
edm::ParameterSet myConfig
G4ParticleDefinition * GetCloud()
static G4ThreadLocal std::unique_ptr< G4ProcessHelper > myHelper
G4ParticleDefinition * GetSpectator()
static bool s_isRHadron(int pdg)
std::unique_ptr< CustomParticleFactory > fParticleFactory

Member Data Documentation

double CustomPhysicsList::dfactor
private

Definition at line 33 of file CustomPhysicsList.h.

Referenced by ConstructProcess(), and CustomPhysicsList().

bool CustomPhysicsList::fHadronicInteraction
private

Definition at line 27 of file CustomPhysicsList.h.

Referenced by ConstructProcess(), and CustomPhysicsList().

std::unique_ptr<CustomParticleFactory> CustomPhysicsList::fParticleFactory
private

Definition at line 25 of file CustomPhysicsList.h.

Referenced by ConstructParticle(), ConstructProcess(), and CustomPhysicsList().

edm::ParameterSet CustomPhysicsList::myConfig
private

Definition at line 29 of file CustomPhysicsList.h.

Referenced by ConstructProcess(), and CustomPhysicsList().

G4ThreadLocal std::unique_ptr< G4ProcessHelper > CustomPhysicsList::myHelper
staticprivate

Definition at line 24 of file CustomPhysicsList.h.

Referenced by ConstructProcess(), and CustomPhysicsList().

std::string CustomPhysicsList::particleDefFilePath
private

Definition at line 31 of file CustomPhysicsList.h.

Referenced by ConstructParticle(), and CustomPhysicsList().

std::string CustomPhysicsList::processDefFilePath
private

Definition at line 32 of file CustomPhysicsList.h.