CMS 3D CMS Logo

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

#include <CustomPhysicsListSS.h>

Inheritance diagram for CustomPhysicsListSS:

Public Member Functions

void ConstructParticle () override
 
void ConstructProcess () override
 
 CustomPhysicsListSS (const std::string &name, const edm::ParameterSet &p, bool useuni=false)
 
 ~CustomPhysicsListSS () 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 11 of file CustomPhysicsListSS.h.

Constructor & Destructor Documentation

◆ CustomPhysicsListSS()

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

Definition at line 24 of file CustomPhysicsListSS.cc.

25  : G4VPhysicsConstructor(name) {
26  myConfig = p;
27  if (apinew) {
28  dfactor = p.getParameter<double>("DarkMPFactor");
29  fHadronicInteraction = p.getParameter<bool>("RhadronPhysics");
30  } else {
31  // this is left for backward compatibility
32  dfactor = p.getParameter<double>("dark_factor");
33  fHadronicInteraction = p.getParameter<bool>("rhadronPhysics");
34  }
35  edm::FileInPath fp = p.getParameter<edm::FileInPath>("particlesDef");
36  particleDefFilePath = fp.fullPath();
38  myHelper.reset(nullptr);
39 
40  edm::LogVerbatim("SimG4CoreCustomPhysics") << "CustomPhysicsListSS: Path for custom particle definition file: \n"
42 }

References dfactor, fHadronicInteraction, personalPlayback::fp, fParticleFactory, myConfig, myHelper, AlCaHLTBitMon_ParallelJobs::p, and particleDefFilePath.

◆ ~CustomPhysicsListSS()

CustomPhysicsListSS::~CustomPhysicsListSS ( )
override

Definition at line 44 of file CustomPhysicsListSS.cc.

44 {}

Member Function Documentation

◆ ConstructParticle()

void CustomPhysicsListSS::ConstructParticle ( )
override

Definition at line 46 of file CustomPhysicsListSS.cc.

46  {
47  edm::LogVerbatim("SimG4CoreCustomPhysicsSS") << "===== CustomPhysicsList::ConstructParticle ";
48  fParticleFactory.get()->loadCustomParticles(particleDefFilePath);
49 }

References fParticleFactory, and particleDefFilePath.

◆ ConstructProcess()

void CustomPhysicsListSS::ConstructProcess ( )
override

Definition at line 51 of file CustomPhysicsListSS.cc.

51  {
52  edm::LogVerbatim("SimG4CoreCustomPhysicsSS") << "CustomPhysicsListSS: adding CustomPhysics processes";
53 
54  G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
55 
56  for (auto particle : fParticleFactory.get()->GetCustomParticles()) {
57  CustomParticle* cp = dynamic_cast<CustomParticle*>(particle);
58  if (cp) {
59  G4ProcessManager* pmanager = particle->GetProcessManager();
60  edm::LogVerbatim("SimG4CoreCustomPhysics")
61  << "CustomPhysicsListSS: " << particle->GetParticleName() << " PDGcode= " << particle->GetPDGEncoding()
62  << " Mass= " << particle->GetPDGMass() / GeV << " GeV.";
63  if (pmanager) {
64  if (particle->GetPDGCharge() != 0.0) {
65  ph->RegisterProcess(new G4CoulombScattering, particle);
66  ph->RegisterProcess(new G4hIonisation, particle);
67  }
68  if (cp->GetCloud() && fHadronicInteraction && CustomPDGParser::s_isRHadron(particle->GetPDGEncoding())) {
69  edm::LogVerbatim("SimG4CoreCustomPhysics")
70  << "CustomPhysicsListSS: " << particle->GetParticleName()
71  << " CloudMass= " << cp->GetCloud()->GetPDGMass() / GeV
72  << " GeV; SpectatorMass= " << cp->GetSpectator()->GetPDGMass() / GeV << " GeV.";
73 
74  if (!myHelper.get()) {
76  }
77  pmanager->AddDiscreteProcess(new FullModelHadronicProcess(myHelper.get()));
78  }
79  if (particle->GetParticleType() == "darkpho") {
81  pmanager->AddDiscreteProcess(darkGamma);
82  }
83  }
84  }
85  }
86 }

References CommonMethods::cp(), dfactor, fHadronicInteraction, fParticleFactory, GeV, myConfig, myHelper, and CustomPDGParser::s_isRHadron().

Member Data Documentation

◆ dfactor

double CustomPhysicsListSS::dfactor
private

Definition at line 30 of file CustomPhysicsListSS.h.

Referenced by ConstructProcess(), and CustomPhysicsListSS().

◆ fHadronicInteraction

bool CustomPhysicsListSS::fHadronicInteraction
private

Definition at line 24 of file CustomPhysicsListSS.h.

Referenced by ConstructProcess(), and CustomPhysicsListSS().

◆ fParticleFactory

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

Definition at line 22 of file CustomPhysicsListSS.h.

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

◆ myConfig

edm::ParameterSet CustomPhysicsListSS::myConfig
private

Definition at line 26 of file CustomPhysicsListSS.h.

Referenced by ConstructProcess(), and CustomPhysicsListSS().

◆ myHelper

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

Definition at line 20 of file CustomPhysicsListSS.h.

Referenced by ConstructProcess(), and CustomPhysicsListSS().

◆ particleDefFilePath

std::string CustomPhysicsListSS::particleDefFilePath
private

Definition at line 28 of file CustomPhysicsListSS.h.

Referenced by ConstructParticle(), and CustomPhysicsListSS().

◆ processDefFilePath

std::string CustomPhysicsListSS::processDefFilePath
private

Definition at line 29 of file CustomPhysicsListSS.h.

G4ProcessHelper
Definition: G4ProcessHelper.h:26
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
personalPlayback.fp
fp
Definition: personalPlayback.py:523
edm::FileInPath
Definition: FileInPath.h:64
CustomPhysicsListSS::myHelper
static G4ThreadLocal std::unique_ptr< G4ProcessHelper > myHelper
Definition: CustomPhysicsListSS.h:20
CustomPhysicsListSS::myConfig
edm::ParameterSet myConfig
Definition: CustomPhysicsListSS.h:26
CustomPhysicsListSS::particleDefFilePath
std::string particleDefFilePath
Definition: CustomPhysicsListSS.h:28
GeV
const double GeV
Definition: MathUtil.h:16
FullModelHadronicProcess
Definition: FullModelHadronicProcess.h:16
CustomParticle
Definition: CustomParticle.h:11
edm::LogVerbatim
Definition: MessageLogger.h:297
CustomPDGParser::s_isRHadron
static bool s_isRHadron(int pdg)
Definition: CustomPDGParser.cc:10
CMSDarkPairProductionProcess
Definition: CMSDarkPairProductionProcess.h:20
CustomParticleFactory
Definition: CustomParticleFactory.h:12
CustomPhysicsListSS::dfactor
double dfactor
Definition: CustomPhysicsListSS.h:30
CustomPhysicsListSS::fParticleFactory
std::unique_ptr< CustomParticleFactory > fParticleFactory
Definition: CustomPhysicsListSS.h:22
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
CustomPhysicsListSS::fHadronicInteraction
bool fHadronicInteraction
Definition: CustomPhysicsListSS.h:24
CommonMethods.cp
def cp(fromDir, toDir, listOfFiles, overwrite=False, smallList=False)
Definition: CommonMethods.py:192