Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4MoleculeShootMessenger Class Reference

#include <G4MoleculeGunMessenger.hh>

+ Inheritance diagram for G4MoleculeShootMessenger:

Public Member Functions

 G4MoleculeShootMessenger (const G4String &name, G4MoleculeGunMessenger *, G4shared_ptr< G4MoleculeShoot >)
 
 ~G4MoleculeShootMessenger () override
 
void SetNewValue (G4UIcommand *command, G4String newValue) override
 
G4String GetCurrentValue (G4UIcommand *command) override
 
G4shared_ptr< G4MoleculeShoot > & GetShoot ()
 
- Public Member Functions inherited from G4UImessenger
 G4UImessenger ()=default
 
 G4UImessenger (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
virtual ~G4UImessenger ()
 
G4bool CommandsShouldBeInMaster () const
 

Protected Attributes

G4UIcmdWithAStringfpGunSpecies
 
G4UIcmdWith3VectorAndUnitfpGunPosition
 
G4UIcmdWith3VectorAndUnitfpGunRdnmPosition
 
G4UIcmdWithADoubleAndUnitfpGunTime
 
G4UIcmdWithAnIntegerfpGunN
 
G4UIcmdWithAStringfpGunType
 
G4shared_ptr< G4MoleculeShootfpShoot
 
- Protected Attributes inherited from G4UImessenger
G4UIdirectorybaseDir = nullptr
 
G4String baseDirName = ""
 
G4bool commandsShouldBeInMaster = false
 

Additional Inherited Members

- Protected Member Functions inherited from G4UImessenger
G4String ItoS (G4int i)
 
G4String LtoS (G4long l)
 
G4String DtoS (G4double a)
 
G4String BtoS (G4bool b)
 
G4int StoI (const G4String &s)
 
G4long StoL (const G4String &s)
 
G4double StoD (const G4String &s)
 
G4bool StoB (const G4String &s)
 
void AddUIcommand (G4UIcommand *newCommand)
 
void CreateDirectory (const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
 
template<typename T>
T * CreateCommand (const G4String &cname, const G4String &dsc)
 

Detailed Description

Definition at line 64 of file G4MoleculeGunMessenger.hh.

Constructor & Destructor Documentation

◆ G4MoleculeShootMessenger()

G4MoleculeShootMessenger::G4MoleculeShootMessenger ( const G4String & name,
G4MoleculeGunMessenger * ,
G4shared_ptr< G4MoleculeShoot > shoot )

Definition at line 95 of file G4MoleculeGunMessenger.cc.

98 : fpShoot(std::move(shoot))
99{
100 G4String dir("/chem/gun/");
101 dir += name;
102 CreateDirectory(dir, "");
103
104 G4String tmp = dir;
105 tmp += "/species";
106 fpGunSpecies = new G4UIcmdWithAString(tmp, this);
107
108 tmp = dir;
109 tmp += "/position";
110 fpGunPosition = new G4UIcmdWith3VectorAndUnit(tmp, this);
111
112 tmp = dir;
113 tmp += "/time";
114 fpGunTime = new G4UIcmdWithADoubleAndUnit(tmp, this);
115
116 tmp = dir;
117 tmp += "/number";
118 fpGunN = new G4UIcmdWithAnInteger(tmp, this);
119
120 tmp = dir;
121 tmp += "/rndmPosition";
122 fpGunRdnmPosition = new G4UIcmdWith3VectorAndUnit(tmp, this);
123
124 tmp = std::move(dir);
125 tmp += "/type";
126 fpGunType = new G4UIcmdWithAString(tmp, this);
127
128// fpShoot.reset(new TG4MoleculeShoot<G4Track>());
129}
G4UIcmdWithADoubleAndUnit * fpGunTime
G4UIcmdWith3VectorAndUnit * fpGunRdnmPosition
G4UIcmdWith3VectorAndUnit * fpGunPosition
G4shared_ptr< G4MoleculeShoot > fpShoot
G4UIcmdWithAString * fpGunSpecies
G4UIcmdWithAnInteger * fpGunN
void CreateDirectory(const G4String &path, const G4String &dsc, G4bool commandsToBeBroadcasted=true)
const char * name(G4int ptype)

◆ ~G4MoleculeShootMessenger()

G4MoleculeShootMessenger::~G4MoleculeShootMessenger ( )
override

Definition at line 133 of file G4MoleculeGunMessenger.cc.

134{
135 delete fpGunSpecies;
136 delete fpGunPosition;
137 delete fpGunTime;
138 delete fpGunN;
139}

Member Function Documentation

◆ GetCurrentValue()

G4String G4MoleculeShootMessenger::GetCurrentValue ( G4UIcommand * command)
overridevirtual

Reimplemented from G4UImessenger.

Definition at line 179 of file G4MoleculeGunMessenger.cc.

180{
181 if (command == fpGunSpecies)
182 {
183 return fpShoot->fMoleculeName;
184 }
185 if (command == fpGunPosition)
186 {
187 return fpGunPosition->ConvertToStringWithBestUnit(fpShoot->fPosition);
188 }
189 if (command == fpGunRdnmPosition)
190 {
191 if(fpShoot->fBoxSize != nullptr)
192 {
193 return fpGunRdnmPosition->ConvertToStringWithBestUnit(*fpShoot->fBoxSize);
194 }
195 return fpGunRdnmPosition->ConvertToStringWithBestUnit(G4ThreeVector());
196 }
197 if (command == fpGunTime)
198 {
199 return fpGunTime->ConvertToStringWithBestUnit(fpShoot->fTime);
200 }
201 if (command == fpGunN)
202 {
203 return fpGunN->ConvertToString(fpShoot->fNumber);
204 }
205 return "";
206}
CLHEP::Hep3Vector G4ThreeVector

◆ GetShoot()

G4shared_ptr< G4MoleculeShoot > & G4MoleculeShootMessenger::GetShoot ( )
inline

Definition at line 74 of file G4MoleculeGunMessenger.hh.

74 {
75 return fpShoot;
76 }

◆ SetNewValue()

void G4MoleculeShootMessenger::SetNewValue ( G4UIcommand * command,
G4String newValue )
overridevirtual

Reimplemented from G4UImessenger.

Definition at line 143 of file G4MoleculeGunMessenger.cc.

144{
145 if (command == fpGunSpecies)
146 {
147 fpShoot->fMoleculeName = newValue;
148 }
149 else if (command == fpGunPosition)
150 {
151 fpShoot->fPosition = fpGunPosition->GetNew3VectorValue(newValue);
152 }
153 else if(command == fpGunRdnmPosition)
154 {
155 fpShoot->fBoxSize = new G4ThreeVector(fpGunRdnmPosition->GetNew3VectorValue(newValue));
156 }
157 else if (command == fpGunTime)
158 {
159 fpShoot->fTime = fpGunTime->GetNewDoubleValue(newValue);
160 }
161 else if (command == fpGunN)
162 {
163 fpShoot->fNumber = fpGunN->GetNewIntValue(newValue);
164 }
165 else if (command == fpGunType)
166 {
167 if(newValue == "CM")
168 {
169// G4cout << "**** Change type" << G4endl;
170// TG4MoleculeShoot<G4ContinuousMedium>* casted = static_cast<TG4MoleculeShoot<G4ContinuousMedium>*>(fpShoot.get());
171// fpShoot.reset(casted);
172 fpShoot = fpShoot.get()->ChangeType<G4ContinuousMedium>();
173 }
174 }
175}
G4int G4ContinuousMedium

Member Data Documentation

◆ fpGunN

G4UIcmdWithAnInteger* G4MoleculeShootMessenger::fpGunN
protected

◆ fpGunPosition

G4UIcmdWith3VectorAndUnit* G4MoleculeShootMessenger::fpGunPosition
protected

◆ fpGunRdnmPosition

G4UIcmdWith3VectorAndUnit* G4MoleculeShootMessenger::fpGunRdnmPosition
protected

◆ fpGunSpecies

G4UIcmdWithAString* G4MoleculeShootMessenger::fpGunSpecies
protected

◆ fpGunTime

G4UIcmdWithADoubleAndUnit* G4MoleculeShootMessenger::fpGunTime
protected

◆ fpGunType

G4UIcmdWithAString* G4MoleculeShootMessenger::fpGunType
protected

Definition at line 84 of file G4MoleculeGunMessenger.hh.

Referenced by G4MoleculeShootMessenger(), and SetNewValue().

◆ fpShoot

G4shared_ptr<G4MoleculeShoot> G4MoleculeShootMessenger::fpShoot
protected

The documentation for this class was generated from the following files: