CMS 3D CMS Logo

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

#include <CMSMonopolePhysics.h>

Inheritance diagram for CMSMonopolePhysics:

Public Member Functions

 CMSMonopolePhysics (const HepPDT::ParticleDataTable *table_, const edm::ParameterSet &p)
 
void ConstructParticle () override
 
void ConstructProcess () override
 
 ~CMSMonopolePhysics () override
 

Private Attributes

G4bool deltaRay
 
std::vector< int > elCharges
 
G4int magCharge
 
std::vector< double > masses
 
std::vector< Monopole * > monopoles
 
G4bool multiSc
 
std::vector< std::string > names
 
std::vector< int > pdgEncodings
 
G4bool transport
 
G4int verbose
 

Detailed Description

Definition at line 18 of file CMSMonopolePhysics.h.

Constructor & Destructor Documentation

◆ CMSMonopolePhysics()

CMSMonopolePhysics::CMSMonopolePhysics ( const HepPDT::ParticleDataTable table_,
const edm::ParameterSet p 
)

Definition at line 16 of file CMSMonopolePhysics.cc.

References deltaRay, elCharges, ecalTB2006H4_GenSimDigiReco_cfg::G4cout, cuy::ii, magCharge, EgHLTOffHistBins_cfi::mass, masses, monopoles, multiSc, names, AlCaHLTBitMon_ParallelJobs::p, HiggsValidation_cfi::particleName, pdgEncodings, AlCaHLTBitMon_QueryRunRegistry::string, transport, and verbose.

17  : G4VPhysicsConstructor("Monopole Physics") {
18  verbose = p.getUntrackedParameter<int>("Verbosity", 0);
19  magCharge = p.getUntrackedParameter<int>("MonopoleCharge", 1);
20  deltaRay = p.getUntrackedParameter<bool>("MonopoleDeltaRay", true);
21  multiSc = p.getUntrackedParameter<bool>("MonopoleMultiScatter", false);
22  transport = p.getUntrackedParameter<bool>("MonopoleTransport", true);
23  double mass = p.getUntrackedParameter<double>("MonopoleMass", 200);
24  if (pdt && mass > 0.0) {
25  int ii = 0;
26  for (HepPDT::ParticleDataTable::const_iterator p = pdt->begin(); p != pdt->end(); ++p, ++ii) {
27  HepPDT::ParticleData particle = (p->second);
28  std::string particleName = (particle.name()).substr(0, 8);
29  if (strcmp(particleName.c_str(), "Monopole") == 0) {
30  names.push_back(particle.name());
31  masses.push_back(mass * CLHEP::GeV);
32  elCharges.push_back((int)(particle.charge()));
33  pdgEncodings.push_back(particle.pid());
34  monopoles.push_back(nullptr);
35  if (verbose > 0)
36  G4cout << "CMSMonopolePhysics: Monopole[" << ii << "] " << particleName << " Mass " << particle.mass()
37  << " GeV, Magnetic Charge " << magCharge << ", Electric Charge " << particle.charge() << G4endl;
38  } else if (strcmp(particleName.c_str(), "AntiMono") == 0) {
39  names.push_back(particle.name());
40  masses.push_back(mass * CLHEP::GeV);
41  elCharges.push_back((int)(particle.charge()));
42  pdgEncodings.push_back(particle.pid());
43  monopoles.push_back(nullptr);
44  if (verbose > 0)
45  G4cout << "CMSMonopolePhysics: Monopole[" << ii << "] " << particleName << " Mass " << particle.mass()
46  << " GeV, Magnetic Charge " << magCharge << ", Electric Charge " << particle.charge() << G4endl;
47  }
48  }
49  }
50  if (verbose > 0)
51  G4cout << "CMSMonopolePhysics has " << names.size() << " monopole candidates and delta Ray option " << deltaRay
52  << G4endl;
53 }
std::vector< int > pdgEncodings
std::vector< Monopole * > monopoles
std::vector< int > elCharges
HepPDT::ParticleData ParticleData
std::vector< std::string > names
ii
Definition: cuy.py:589
std::vector< double > masses

◆ ~CMSMonopolePhysics()

CMSMonopolePhysics::~CMSMonopolePhysics ( )
override

Definition at line 55 of file CMSMonopolePhysics.cc.

55 {}

Member Function Documentation

◆ ConstructParticle()

void CMSMonopolePhysics::ConstructParticle ( )
override

Definition at line 57 of file CMSMonopolePhysics.cc.

References elCharges, ecalTB2006H4_GenSimDigiReco_cfg::G4cout, cuy::ii, magCharge, masses, CaloTowersParam_cfi::mc, monopoles, names, pdgEncodings, and verbose.

57  {
58  for (unsigned int ii = 0; ii < names.size(); ++ii) {
59  // monopoles are created once in the master thread
60  if (!monopoles[ii]) {
61  G4int mc = (pdgEncodings[ii] >= 0) ? magCharge : -magCharge;
63  monopoles[ii] = mpl;
64  if (verbose > 0)
65  G4cout << "Create Monopole " << names[ii] << " of mass " << masses[ii] / CLHEP::GeV << " GeV, magnetic charge "
66  << mc << ", electric charge " << elCharges[ii] << " and PDG encoding " << pdgEncodings[ii] << " at "
67  << monopoles[ii] << G4endl;
68  }
69  }
70 }
std::vector< int > pdgEncodings
std::vector< Monopole * > monopoles
std::vector< int > elCharges
std::vector< std::string > names
ii
Definition: cuy.py:589
std::vector< double > masses

◆ ConstructProcess()

void CMSMonopolePhysics::ConstructProcess ( )
override

Definition at line 72 of file CMSMonopolePhysics.cc.

References edm::errors::Configuration, deltaRay, Exception, ecalTB2006H4_GenSimDigiReco_cfg::G4cout, cuy::ii, Monopole::MagneticCharge(), EgHLTOffHistBins_cfi::mass, monopoles, multiSc, EcalTangentSkim_cfg::o, and verbose.

72  {
73  // Add standard EM Processes
74  if (verbose > 0) {
75  G4cout << "### CMSMonopolePhysics ConstructProcess()" << G4endl;
76  }
77  G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
78 
79  for (unsigned int ii = 0; ii < monopoles.size(); ++ii) {
80  if (monopoles[ii]) {
81  Monopole* mpl = monopoles[ii];
82  G4ProcessManager* pmanager = mpl->GetProcessManager();
83  if (!pmanager) {
84  std::ostringstream o;
85  o << "Monopole without a Process Manager";
86  throw edm::Exception(edm::errors::Configuration, o.str().c_str());
87  return;
88  }
89 
90  G4double magn = mpl->MagneticCharge();
91  G4double mass = mpl->GetPDGMass();
92  if (verbose > 1) {
93  G4cout << "### CMSMonopolePhysics instantiates for " << mpl->GetParticleName() << " at " << mpl << " Mass "
94  << mass / CLHEP::GeV << " GeV Mag " << magn << " Process manager " << pmanager << G4endl;
95  }
96 
97  if (magn != 0.0) {
98  G4int idxt(0);
99  pmanager->RemoveProcess(idxt);
100  pmanager->AddProcess(new MonopoleTransportation(mpl, verbose), -1, 0, 0);
101  }
102 
103  if (mpl->GetPDGCharge() != 0.0) {
104  if (multiSc) {
105  G4hMultipleScattering* hmsc = new G4hMultipleScattering();
106  ph->RegisterProcess(hmsc, mpl);
107  }
108  G4hIonisation* hioni = new G4hIonisation();
109  ph->RegisterProcess(hioni, mpl);
110  }
111  if (magn != 0.0) {
112  G4mplIonisation* mplioni = new G4mplIonisation(magn);
113  if (!deltaRay) {
114  G4mplIonisationWithDeltaModel* ion = new G4mplIonisationWithDeltaModel(magn, "PAI");
115  ion->SetParticle(mpl);
116  mplioni->AddEmModel(0, ion, ion);
117  }
118  ph->RegisterProcess(mplioni, mpl);
119  }
120  pmanager->AddDiscreteProcess(new G4StepLimiter());
121  if (verbose > 1) {
122  pmanager->DumpInfo();
123  }
124  }
125  }
126 }
std::vector< Monopole * > monopoles
G4double MagneticCharge() const
Definition: Monopole.h:20
ii
Definition: cuy.py:589

Member Data Documentation

◆ deltaRay

G4bool CMSMonopolePhysics::deltaRay
private

Definition at line 28 of file CMSMonopolePhysics.h.

Referenced by CMSMonopolePhysics(), and ConstructProcess().

◆ elCharges

std::vector<int> CMSMonopolePhysics::elCharges
private

Definition at line 31 of file CMSMonopolePhysics.h.

Referenced by CMSMonopolePhysics(), and ConstructParticle().

◆ magCharge

G4int CMSMonopolePhysics::magCharge
private

Definition at line 27 of file CMSMonopolePhysics.h.

Referenced by CMSMonopolePhysics(), and ConstructParticle().

◆ masses

std::vector<double> CMSMonopolePhysics::masses
private

Definition at line 30 of file CMSMonopolePhysics.h.

Referenced by CMSMonopolePhysics(), and ConstructParticle().

◆ monopoles

std::vector<Monopole*> CMSMonopolePhysics::monopoles
private

Definition at line 32 of file CMSMonopolePhysics.h.

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

◆ multiSc

G4bool CMSMonopolePhysics::multiSc
private

Definition at line 28 of file CMSMonopolePhysics.h.

Referenced by CMSMonopolePhysics(), and ConstructProcess().

◆ names

std::vector<std::string> CMSMonopolePhysics::names
private

Definition at line 29 of file CMSMonopolePhysics.h.

Referenced by CMSMonopolePhysics(), and ConstructParticle().

◆ pdgEncodings

std::vector<int> CMSMonopolePhysics::pdgEncodings
private

Definition at line 31 of file CMSMonopolePhysics.h.

Referenced by CMSMonopolePhysics(), and ConstructParticle().

◆ transport

G4bool CMSMonopolePhysics::transport
private

Definition at line 28 of file CMSMonopolePhysics.h.

Referenced by CMSMonopolePhysics().

◆ verbose

G4int CMSMonopolePhysics::verbose
private

Definition at line 27 of file CMSMonopolePhysics.h.

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