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 26 of file CustomPhysicsListSS.cc.

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

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

◆ ~CustomPhysicsListSS()

CustomPhysicsListSS::~CustomPhysicsListSS ( )
override

Definition at line 46 of file CustomPhysicsListSS.cc.

46 {}

Member Function Documentation

◆ ConstructParticle()

void CustomPhysicsListSS::ConstructParticle ( )
override

Definition at line 48 of file CustomPhysicsListSS.cc.

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

References fParticleFactory, and particleDefFilePath.

◆ ConstructProcess()

void CustomPhysicsListSS::ConstructProcess ( )
override

Definition at line 53 of file CustomPhysicsListSS.cc.

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

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.

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
CustomPDGParser::s_isRHadron
static bool s_isRHadron(int pdg)
Definition: CustomPDGParser.cc:10
CMSDarkPairProductionProcess
Definition: CMSDarkPairProductionProcess.h:20
CustomPhysicsListSS::dfactor
double dfactor
Definition: CustomPhysicsListSS.h:30
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
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