106{
107 const std::vector<G4String>& regnamesDNA = theParameters->RegionsDNA();
108 std::size_t nreg = regnamesDNA.size();
109 if(0 == nreg)
110 {
111 return;
112 }
113
114 const std::vector<G4String>& typesDNA = theParameters->TypesDNA();
115 G4bool fast = theParameters->DNAFast();
116 G4bool st = theParameters->DNAStationary();
117
118 const G4double emaxDNA = 1.*CLHEP::MeV;
119 const G4double emaxIonDNA = 300.*CLHEP::MeV;
120 const G4double emaxLightIonDNA = 400.*CLHEP::MeV;
121 const G4double eminBorn = 500.*CLHEP::keV;
122 const G4double emax = theParameters->MaxKinEnergy();
123
124 if(IsVerbose()) {
125 G4cout <<
"### G4EmDNAPhysicsActivator::ConstructProcess for " << nreg
126 <<
" regions; DNA physics type " <<
G4endl;
127 }
128
129
132
133 G4DNAGenericIonsManager * genericIonsManager =
136 G4ParticleDefinition* alpha1 = genericIonsManager->
GetIon(
"alpha+");
137 G4ParticleDefinition* alpha0 = genericIonsManager->
GetIon(
"helium");
138 G4ParticleDefinition* h0 = genericIonsManager->
GetIon(
"hydrogen");
139
140
141 for(std::size_t i = 0; i < nreg; ++i)
142 {
143 if(IsVerbose())
144 {
145 G4cout <<
"### DNA models type " << typesDNA[i]
146 <<
" are activated for G4Region " << regnamesDNA[i] <<
G4endl;
147 }
149 if(nullptr == reg) { continue; }
151 if(typesDNA[i] == "DNA_Opt1") {
152 opt = 1;
153 } else if(typesDNA[i] == "DNA_Opt2") {
154 opt = 2;
155 } else if(typesDNA[i] == "DNA_Opt3") {
156 opt = 3;
157 } else if(typesDNA[i] == "DNA_Opt4") {
158 opt = 4;
159 } else if(typesDNA[i] == "DNA_Opt5") {
160 opt = 4;
161 } else if(typesDNA[i] == "DNA_Opt6") {
162 opt = 6;
163 } else if(typesDNA[i] == "DNA_Opt7") {
164 opt = 6;
165 } else if(typesDNA[i] == "DNA_Opt8") {
166 opt = 8;
167 }
168 DeactivateElectronProcesses(emaxDNA, emax, reg);
170 DeactivateHadronProcesses(prot, emaxIonDNA, emax, reg);
172 DeactivateIonProcesses(gion, emaxIonDNA, emax, reg);
174 DeactivateIonProcesses(
alpha2, emaxLightIonDNA, emax, reg);
176 DeactivateHadronProcesses(alpha1, emaxLightIonDNA, emax, reg);
180 }
181}
G4GLOB_DLL std::ostream G4cout
static G4DNAGenericIonsManager * Instance()
G4ParticleDefinition * GetIon(const G4String &name)
static void ConstructDNALightIonPhysics(G4ParticleDefinition *part, const G4int charge, const G4int opt, const G4double emax, const G4bool fast, const G4bool stationary, const G4Region *reg=nullptr)
static void ConstructDNAIonPhysics(const G4double emax, const G4bool stationary, const G4Region *reg=nullptr)
static void ConstructDNAProtonPhysics(const G4double e1DNA, const G4double emaxDNA, const G4int opt, const G4bool fast, const G4bool stationary, const G4Region *reg=nullptr)
static void ConstructDNAElectronPhysics(const G4double emaxDNA, const G4int opt, const G4bool fast, const G4bool stationary, const G4Region *reg=nullptr)
static const G4Region * FindRegion(const G4String ®ionName, const G4int verbose=0)
static G4GenericIon * GenericIon()
static G4Proton * Proton()