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

#include <G4VScoringMesh.hh>

+ Inheritance diagram for G4VScoringMesh:

Public Types

enum class  MeshShape {
  box , cylinder , sphere , realWorldLogVol ,
  probe , undefined = -1
}
 
using EventScore = G4THitsMap<G4double>
 
using RunScore = G4THitsMap<G4StatDouble>
 
using MeshScoreMap = std::map<G4String, RunScore*>
 

Public Member Functions

 G4VScoringMesh (const G4String &wName)
 
virtual ~G4VScoringMesh ()=default
 
virtual void Construct (G4VPhysicalVolume *fWorldPhys)
 
virtual void WorkerConstruct (G4VPhysicalVolume *fWorldPhys)
 
virtual void List () const
 
const G4StringGetWorldName () const
 
G4bool IsActive () const
 
void Activate (G4bool vl=true)
 
MeshShape GetShape () const
 
void Accumulate (G4THitsMap< G4double > *map)
 
void Accumulate (G4THitsMap< G4StatDouble > *map)
 
void Merge (const G4VScoringMesh *scMesh)
 
void Dump ()
 
void DrawMesh (const G4String &psName, G4VScoreColorMap *colorMap, G4int axflg=111)
 
void DrawMesh (const G4String &psName, G4int idxPlane, G4int iColumn, G4VScoreColorMap *colorMap)
 
virtual void Draw (RunScore *map, G4VScoreColorMap *colorMap, G4int axflg=111)=0
 
virtual void DrawColumn (RunScore *map, G4VScoreColorMap *colorMap, G4int idxProj, G4int idxColumn)=0
 
void ResetScore ()
 
void SetSize (G4double size[3])
 
G4ThreeVector GetSize () const
 
void SetAngles (G4double, G4double)
 
G4double GetStartAngle () const
 
G4double GetAngleSpan () const
 
void SetCenterPosition (G4double centerPosition[3])
 
G4ThreeVector GetTranslation () const
 
void RotateX (G4double delta)
 
void RotateY (G4double delta)
 
void RotateZ (G4double delta)
 
G4RotationMatrix GetRotationMatrix () const
 
void SetNumberOfSegments (G4int nSegment[3])
 
void GetNumberOfSegments (G4int nSegment[3])
 
void SetPrimitiveScorer (G4VPrimitiveScorer *ps)
 
void SetFilter (G4VSDFilter *filter)
 
void SetCurrentPrimitiveScorer (const G4String &name)
 
G4bool FindPrimitiveScorer (const G4String &psname)
 
G4bool IsCurrentPrimitiveScorerNull ()
 
G4String GetPSUnit (const G4String &psname)
 
G4String GetCurrentPSUnit ()
 
void SetCurrentPSUnit (const G4String &unit)
 
G4double GetPSUnitValue (const G4String &psname)
 
void SetDrawPSName (const G4String &psname)
 
void GetDivisionAxisNames (G4String divisionAxisNames[3])
 
void SetNullToCurrentPrimitiveScorer ()
 
void SetVerboseLevel (G4int vl)
 
MeshScoreMap GetScoreMap () const
 
G4bool ReadyForQuantity () const
 
G4VPrimitiveScorerGetPrimitiveScorer (const G4String &name)
 
void SetMeshElementLogical (G4LogicalVolume *val)
 
G4LogicalVolumeGetMeshElementLogical () const
 
void SetParallelWorldProcess (G4ParallelWorldProcess *proc)
 
G4ParallelWorldProcessGetParallelWorldProcess () const
 
void GeometryHasBeenDestroyed ()
 
void SetCopyNumberLevel (G4int val)
 
G4int GetCopyNumberLevel () const
 
G4bool LayeredMassFlg ()
 

Protected Member Functions

virtual void SetupGeometry (G4VPhysicalVolume *fWorldPhys)=0
 

Protected Attributes

G4String fWorldName
 
G4VPrimitiveScorerfCurrentPS
 
G4bool fConstructed
 
G4bool fActive
 
MeshShape fShape
 
G4double fSize [3]
 
G4double fAngle [2]
 
G4ThreeVector fCenterPosition
 
G4RotationMatrixfRotationMatrix
 
G4int fNSegment [3]
 
MeshScoreMap fMap
 
G4MultiFunctionalDetectorfMFD
 
G4int verboseLevel
 
G4bool sizeIsSet
 
G4bool nMeshIsSet
 
G4String fDrawUnit
 
G4double fDrawUnitValue
 
G4String fDrawPSName
 
G4String fDivisionAxisNames [3]
 
G4LogicalVolumefMeshElementLogical
 
G4ParallelWorldProcessfParallelWorldProcess
 
G4bool fGeometryHasBeenDestroyed
 
G4int copyNumberLevel
 
G4bool layeredMassFlg
 

Detailed Description

Definition at line 54 of file G4VScoringMesh.hh.

Member Typedef Documentation

◆ EventScore

Definition at line 66 of file G4VScoringMesh.hh.

◆ MeshScoreMap

Definition at line 68 of file G4VScoringMesh.hh.

◆ RunScore

Member Enumeration Documentation

◆ MeshShape

enum class G4VScoringMesh::MeshShape
strong
Enumerator
box 
cylinder 
sphere 
realWorldLogVol 
probe 
undefined 

Definition at line 57 of file G4VScoringMesh.hh.

58 {
59 box,
60 cylinder,
61 sphere,
62 realWorldLogVol,
63 probe,
64 undefined = -1
65 };

Constructor & Destructor Documentation

◆ G4VScoringMesh()

G4VScoringMesh::G4VScoringMesh ( const G4String & wName)

Definition at line 38 of file G4VScoringMesh.cc.

39 : fWorldName(wName)
40 , fCurrentPS(nullptr)
41 , fConstructed(false)
42 , fActive(true)
44 , fRotationMatrix(nullptr)
45 , fMFD(new G4MultiFunctionalDetector(wName))
46 , verboseLevel(0)
47 , sizeIsSet(false)
48 , nMeshIsSet(false)
49 , fDrawUnit("")
50 , fDrawUnitValue(1.)
51 , fMeshElementLogical(nullptr)
52 , fParallelWorldProcess(nullptr)
55 , layeredMassFlg(false)
56{
58
59 fSize[0] = fSize[1] = fSize[2] = 0.;
60 fAngle[0] = 0.0;
61 fAngle[1] = CLHEP::twopi * rad;
62 fNSegment[0] = fNSegment[1] = fNSegment[2] = 1;
64}
static G4SDManager * GetSDMpointer()
void AddNewDetector(G4VSensitiveDetector *aSD)
G4RotationMatrix * fRotationMatrix
G4double fDrawUnitValue
G4bool fGeometryHasBeenDestroyed
G4MultiFunctionalDetector * fMFD
G4String fDivisionAxisNames[3]
G4LogicalVolume * fMeshElementLogical
G4VPrimitiveScorer * fCurrentPS
G4double fAngle[2]
G4double fSize[3]
G4ParallelWorldProcess * fParallelWorldProcess

Referenced by G4ScoringBox::G4ScoringBox(), G4ScoringCylinder::G4ScoringCylinder(), G4ScoringProbe::G4ScoringProbe(), G4ScoringRealWorld::G4ScoringRealWorld(), and Merge().

◆ ~G4VScoringMesh()

virtual G4VScoringMesh::~G4VScoringMesh ( )
virtualdefault

Member Function Documentation

◆ Accumulate() [1/2]

void G4VScoringMesh::Accumulate ( G4THitsMap< G4double > * map)

Definition at line 376 of file G4VScoringMesh.cc.

377{
378 G4String psName = map->GetName();
379 const auto fMapItr = fMap.find(psName);
380 if (fMapItr != fMap.cend()) { *(fMapItr->second) += *map; }
381
382 if(verboseLevel > 9)
383 {
384 G4cout << G4endl;
385 G4cout << "G4VScoringMesh::Accumulate()" << G4endl;
386 G4cout << " PS name : " << psName << G4endl;
387 if(fMapItr == fMap.cend())
388 {
389 G4cout << " " << psName << " was not found." << G4endl;
390 }
391 else
392 {
393 G4cout << " map size : " << map->GetSize() << G4endl;
394 map->PrintAllHits();
395 }
396 G4cout << G4endl;
397 }
398}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
void PrintAllHits() override
std::size_t GetSize() const override
const G4String & GetName() const
MeshScoreMap fMap

◆ Accumulate() [2/2]

void G4VScoringMesh::Accumulate ( G4THitsMap< G4StatDouble > * map)

Definition at line 400 of file G4VScoringMesh.cc.

401{
402 G4String psName = map->GetName();
403 const auto fMapItr = fMap.find(psName);
404 if (fMapItr != fMap.cend()) { *(fMapItr->second) += *map; }
405
406 if(verboseLevel > 9)
407 {
408 G4cout << G4endl;
409 G4cout << "G4VScoringMesh::Accumulate()" << G4endl;
410 G4cout << " PS name : " << psName << G4endl;
411 if(fMapItr == fMap.cend())
412 {
413 G4cout << " " << psName << " was not found." << G4endl;
414 }
415 else
416 {
417 G4cout << " map size : " << map->GetSize() << G4endl;
418 map->PrintAllHits();
419 }
420 G4cout << G4endl;
421 }
422}

◆ Activate()

void G4VScoringMesh::Activate ( G4bool vl = true)
inline

Definition at line 89 of file G4VScoringMesh.hh.

89{ fActive = vl; }

◆ Construct()

void G4VScoringMesh::Construct ( G4VPhysicalVolume * fWorldPhys)
virtual

Definition at line 424 of file G4VScoringMesh.cc.

425{
426 if(fConstructed)
427 {
429 {
430 SetupGeometry(fWorldPhys);
432 }
433 if(verboseLevel > 0)
434 G4cout << fWorldName << " --- All quantities are reset." << G4endl;
435 ResetScore();
436 }
437 else
438 {
439 fConstructed = true;
440 SetupGeometry(fWorldPhys);
441 }
442}
virtual void SetupGeometry(G4VPhysicalVolume *fWorldPhys)=0

Referenced by G4RunManager::ConstructScoringWorlds().

◆ Draw()

virtual void G4VScoringMesh::Draw ( RunScore * map,
G4VScoreColorMap * colorMap,
G4int axflg = 111 )
pure virtual

◆ DrawColumn()

virtual void G4VScoringMesh::DrawColumn ( RunScore * map,
G4VScoreColorMap * colorMap,
G4int idxProj,
G4int idxColumn )
pure virtual

◆ DrawMesh() [1/2]

void G4VScoringMesh::DrawMesh ( const G4String & psName,
G4int idxPlane,
G4int iColumn,
G4VScoreColorMap * colorMap )

Definition at line 358 of file G4VScoringMesh.cc.

360{
361 fDrawPSName = psName;
362 const auto fMapItr = fMap.find(psName);
363 if(fMapItr != fMap.cend())
364 {
365 fDrawUnit = GetPSUnit(psName);
367 DrawColumn(fMapItr->second, colorMap, idxPlane, iColumn);
368 }
369 else
370 {
371 G4cerr << "Scorer <" << psName << "> is not defined. Method ignored."
372 << G4endl;
373 }
374}
G4GLOB_DLL std::ostream G4cerr
G4double GetPSUnitValue(const G4String &psname)
G4String GetPSUnit(const G4String &psname)
virtual void DrawColumn(RunScore *map, G4VScoreColorMap *colorMap, G4int idxProj, G4int idxColumn)=0

◆ DrawMesh() [2/2]

void G4VScoringMesh::DrawMesh ( const G4String & psName,
G4VScoreColorMap * colorMap,
G4int axflg = 111 )

Definition at line 340 of file G4VScoringMesh.cc.

342{
343 fDrawPSName = psName;
344 const auto fMapItr = fMap.find(psName);
345 if(fMapItr != fMap.cend())
346 {
347 fDrawUnit = GetPSUnit(psName);
349 Draw(fMapItr->second, colorMap, axflg);
350 }
351 else
352 {
353 G4cerr << "Scorer <" << psName << "> is not defined. Method ignored."
354 << G4endl;
355 }
356}
virtual void Draw(RunScore *map, G4VScoreColorMap *colorMap, G4int axflg=111)=0

Referenced by G4VSceneHandler::AddCompound(), G4VSceneHandler::AddCompound(), G4ScoringManager::DrawMesh(), and G4ScoringManager::DrawMesh().

◆ Dump()

void G4VScoringMesh::Dump ( )

Definition at line 328 of file G4VScoringMesh.cc.

329{
330 G4cout << "scoring mesh name: " << fWorldName << G4endl;
331 G4cout << "# of G4THitsMap : " << fMap.size() << G4endl;
332 for(const auto& mp : fMap)
333 {
334 G4cout << "[" << mp.first << "]" << G4endl;
335 mp.second->PrintAllHits();
336 }
337 G4cout << G4endl;
338}

◆ FindPrimitiveScorer()

G4bool G4VScoringMesh::FindPrimitiveScorer ( const G4String & psname)

Definition at line 218 of file G4VScoringMesh.cc.

219{
220 const auto itr = fMap.find(psname);
221 return itr != fMap.cend();
222}

Referenced by G4ScoreQuantityMessenger::CheckMeshPS().

◆ GeometryHasBeenDestroyed()

void G4VScoringMesh::GeometryHasBeenDestroyed ( )
inline

◆ GetAngleSpan()

G4double G4VScoringMesh::GetAngleSpan ( ) const
inline

Definition at line 123 of file G4VScoringMesh.hh.

123{ return fAngle[1]; }

Referenced by G4ScoreQuantityMessenger::SetNewValue().

◆ GetCopyNumberLevel()

G4int G4VScoringMesh::GetCopyNumberLevel ( ) const
inline

Definition at line 214 of file G4VScoringMesh.hh.

214{ return copyNumberLevel; }

Referenced by G4ScoreQuantityMessenger::SetNewValue().

◆ GetCurrentPSUnit()

G4String G4VScoringMesh::GetCurrentPSUnit ( )

Definition at line 235 of file G4VScoringMesh.cc.

236{
237 G4String unit = "";
238 if(fCurrentPS == nullptr)
239 {
240 G4String msg = "ERROR : G4VScoringMesh::GetCurrentPSUnit() : ";
241 msg += " Current primitive scorer is null.";
242 G4cerr << msg << G4endl;
243 }
244 else
245 {
246 unit = fCurrentPS->GetUnit();
247 }
248 return unit;
249}

Referenced by G4ScoreQuantityMessenger::SetNewValue().

◆ GetDivisionAxisNames()

void G4VScoringMesh::GetDivisionAxisNames ( G4String divisionAxisNames[3])

Definition at line 276 of file G4VScoringMesh.cc.

277{
278 for(G4int i = 0; i < 3; ++i)
279 divisionAxisNames[i] = fDivisionAxisNames[i];
280}
int G4int
Definition G4Types.hh:85

◆ GetMeshElementLogical()

G4LogicalVolume * G4VScoringMesh::GetMeshElementLogical ( ) const
inline

Definition at line 192 of file G4VScoringMesh.hh.

193 {
194 return fMeshElementLogical;
195 }

Referenced by G4WorkerRunManager::ConstructScoringWorlds().

◆ GetNumberOfSegments()

void G4VScoringMesh::GetNumberOfSegments ( G4int nSegment[3])

Definition at line 134 of file G4VScoringMesh.cc.

135{
136 for(G4int i = 0; i < 3; ++i)
137 nSegment[i] = fNSegment[i];
138}

Referenced by G4GMocrenFileSceneHandler::AddSolid(), and G4ScoreQuantityMessenger::SetNewValue().

◆ GetParallelWorldProcess()

G4ParallelWorldProcess * G4VScoringMesh::GetParallelWorldProcess ( ) const
inline

◆ GetPrimitiveScorer()

G4VPrimitiveScorer * G4VScoringMesh::GetPrimitiveScorer ( const G4String & name)

Definition at line 282 of file G4VScoringMesh.cc.

283{
284 if(fMFD == nullptr)
285 return nullptr;
286
287 G4int nps = fMFD->GetNumberOfPrimitives();
288 for(G4int i = 0; i < nps; ++i)
289 {
290 G4VPrimitiveScorer* prs = fMFD->GetPrimitive(i);
291 if(name == prs->GetName())
292 return prs;
293 }
294
295 return nullptr;
296}
const G4String & GetName() const

Referenced by GetPSUnit(), GetPSUnitValue(), and SetCurrentPrimitiveScorer().

◆ GetPSUnit()

G4String G4VScoringMesh::GetPSUnit ( const G4String & psname)

Definition at line 224 of file G4VScoringMesh.cc.

225{
226 const auto itr = fMap.find(psname);
227 if(itr == fMap.cend())
228 {
229 return G4String("");
230 }
231
232 return GetPrimitiveScorer(psname)->GetUnit();
233}
const G4String & GetUnit() const
G4VPrimitiveScorer * GetPrimitiveScorer(const G4String &name)

Referenced by DrawMesh(), and DrawMesh().

◆ GetPSUnitValue()

G4double G4VScoringMesh::GetPSUnitValue ( const G4String & psname)

Definition at line 265 of file G4VScoringMesh.cc.

266{
267 const auto itr = fMap.find(psname);
268 if(itr == fMap.cend())
269 {
270 return 1.;
271 }
272
273 return GetPrimitiveScorer(psname)->GetUnitValue();
274}
G4double GetUnitValue() const

Referenced by DrawMesh(), and DrawMesh().

◆ GetRotationMatrix()

G4RotationMatrix G4VScoringMesh::GetRotationMatrix ( ) const
inline

Definition at line 135 of file G4VScoringMesh.hh.

136 {
137 if(fRotationMatrix != nullptr)
138 return *fRotationMatrix;
140 }
static DLL_API const HepRotation IDENTITY
Definition Rotation.h:366

Referenced by G4GMocrenFileSceneHandler::AddSolid().

◆ GetScoreMap()

MeshScoreMap G4VScoringMesh::GetScoreMap ( ) const
inline

◆ GetShape()

◆ GetSize()

G4ThreeVector G4VScoringMesh::GetSize ( ) const

Definition at line 97 of file G4VScoringMesh.cc.

98{
99 if(sizeIsSet)
100 return G4ThreeVector(fSize[0], fSize[1], fSize[2]);
101 return G4ThreeVector(0., 0., 0.);
102}
CLHEP::Hep3Vector G4ThreeVector

Referenced by G4GMocrenFileSceneHandler::AddSolid(), G4ScoreQuantityMessenger::SetNewValue(), and G4ScoringMessenger::SetNewValue().

◆ GetStartAngle()

G4double G4VScoringMesh::GetStartAngle ( ) const
inline

Definition at line 122 of file G4VScoringMesh.hh.

122{ return fAngle[0]; }

Referenced by G4ScoreQuantityMessenger::SetNewValue().

◆ GetTranslation()

G4ThreeVector G4VScoringMesh::GetTranslation ( ) const
inline

Definition at line 127 of file G4VScoringMesh.hh.

127{ return fCenterPosition; }
G4ThreeVector fCenterPosition

Referenced by G4GMocrenFileSceneHandler::AddSolid().

◆ GetWorldName()

const G4String & G4VScoringMesh::GetWorldName ( ) const
inline

Definition at line 85 of file G4VScoringMesh.hh.

85{ return fWorldName; }

Referenced by G4ScoringMessenger::SetNewValue().

◆ IsActive()

G4bool G4VScoringMesh::IsActive ( ) const
inline

◆ IsCurrentPrimitiveScorerNull()

G4bool G4VScoringMesh::IsCurrentPrimitiveScorerNull ( )
inline

Definition at line 157 of file G4VScoringMesh.hh.

158 {
159 return fCurrentPS == nullptr;
160 }

Referenced by G4ScoreQuantityMessenger::SetNewValue().

◆ LayeredMassFlg()

G4bool G4VScoringMesh::LayeredMassFlg ( )
inline

◆ List()

void G4VScoringMesh::List ( ) const
virtual

Reimplemented in G4ScoringBox, G4ScoringCylinder, G4ScoringProbe, and G4ScoringRealWorld.

Definition at line 298 of file G4VScoringMesh.cc.

299{
300 G4cout << " # of segments: (" << fNSegment[0] << ", " << fNSegment[1] << ", "
301 << fNSegment[2] << ")" << G4endl;
302 G4cout << " displacement: (" << fCenterPosition.x() / cm << ", "
303 << fCenterPosition.y() / cm << ", " << fCenterPosition.z() / cm
304 << ") [cm]" << G4endl;
305 if(fRotationMatrix != nullptr)
306 {
307 G4cout << " rotation matrix: " << fRotationMatrix->xx() << " "
308 << fRotationMatrix->xy() << " " << fRotationMatrix->xz() << G4endl
309 << " " << fRotationMatrix->yx() << " "
310 << fRotationMatrix->yy() << " " << fRotationMatrix->yz() << G4endl
311 << " " << fRotationMatrix->zx() << " "
312 << fRotationMatrix->zy() << " " << fRotationMatrix->zz() << G4endl;
313 }
314
315 G4cout << " registered primitve scorers : " << G4endl;
316 G4int nps = fMFD->GetNumberOfPrimitives();
317 G4VPrimitiveScorer* prs;
318 for(G4int i = 0; i < nps; ++i)
319 {
320 prs = fMFD->GetPrimitive(i);
321 G4cout << " " << i << " " << prs->GetName();
322 if(prs->GetFilter() != nullptr)
323 G4cout << " with " << prs->GetFilter()->GetName();
324 G4cout << G4endl;
325 }
326}
G4VSDFilter * GetFilter() const
const G4String & GetName() const

Referenced by G4ScoringBox::List(), G4ScoringCylinder::List(), G4ScoringProbe::List(), and G4ScoringRealWorld::List().

◆ Merge()

void G4VScoringMesh::Merge ( const G4VScoringMesh * scMesh)

Definition at line 466 of file G4VScoringMesh.cc.

467{
468 const MeshScoreMap scMap = scMesh->GetScoreMap();
469
470 auto fMapItr = fMap.cbegin();
471 auto mapItr = scMap.cbegin();
472 for(; fMapItr != fMap.cend(); ++fMapItr)
473 {
474 if(verboseLevel > 9)
475 G4cout << "G4VScoringMesh::Merge()" << fMapItr->first << G4endl;
476 *(fMapItr->second) += *(mapItr->second);
477 ++mapItr;
478 }
479}
std::map< G4String, RunScore * > MeshScoreMap
MeshScoreMap GetScoreMap() const

Referenced by G4ScoringManager::Merge().

◆ ReadyForQuantity()

G4bool G4VScoringMesh::ReadyForQuantity ( ) const
inline

Definition at line 182 of file G4VScoringMesh.hh.

182{ return (sizeIsSet && nMeshIsSet); }

Referenced by SetPrimitiveScorer().

◆ ResetScore()

void G4VScoringMesh::ResetScore ( )

Definition at line 66 of file G4VScoringMesh.cc.

67{
68 if(verboseLevel > 9)
69 G4cout << "G4VScoringMesh::ResetScore() is called." << G4endl;
70 for(const auto& mp : fMap)
71 {
72 if(verboseLevel > 9)
73 G4cout << "G4VScoringMesh::ResetScore()" << mp.first << G4endl;
74 mp.second->clear();
75 }
76}

Referenced by Construct(), and WorkerConstruct().

◆ RotateX()

void G4VScoringMesh::RotateX ( G4double delta)

Definition at line 140 of file G4VScoringMesh.cc.

141{
142 if(fRotationMatrix == nullptr)
144 fRotationMatrix->rotateX(delta);
145}
CLHEP::HepRotation G4RotationMatrix

Referenced by G4ScoringMessenger::SetNewValue().

◆ RotateY()

void G4VScoringMesh::RotateY ( G4double delta)

Definition at line 147 of file G4VScoringMesh.cc.

148{
149 if(fRotationMatrix == nullptr)
151 fRotationMatrix->rotateY(delta);
152}

Referenced by G4ScoringMessenger::SetNewValue().

◆ RotateZ()

void G4VScoringMesh::RotateZ ( G4double delta)

Definition at line 154 of file G4VScoringMesh.cc.

155{
156 if(fRotationMatrix == nullptr)
158 fRotationMatrix->rotateZ(delta);
159}

Referenced by G4ScoringMessenger::SetNewValue().

◆ SetAngles()

void G4VScoringMesh::SetAngles ( G4double startAngle,
G4double spanAngle )

Definition at line 104 of file G4VScoringMesh.cc.

105{
106 fAngle[0] = startAngle;
107 fAngle[1] = spanAngle;
108}

Referenced by G4ScoringMessenger::SetNewValue().

◆ SetCenterPosition()

void G4VScoringMesh::SetCenterPosition ( G4double centerPosition[3])

Definition at line 110 of file G4VScoringMesh.cc.

111{
113 G4ThreeVector(centerPosition[0], centerPosition[1], centerPosition[2]);
114}

Referenced by G4ScoringMessenger::SetNewValue().

◆ SetCopyNumberLevel()

void G4VScoringMesh::SetCopyNumberLevel ( G4int val)
inline

Definition at line 213 of file G4VScoringMesh.hh.

213{ copyNumberLevel = val; }

◆ SetCurrentPrimitiveScorer()

void G4VScoringMesh::SetCurrentPrimitiveScorer ( const G4String & name)

Definition at line 207 of file G4VScoringMesh.cc.

208{
210 if(fCurrentPS == nullptr)
211 {
212 G4cerr << "ERROR : G4VScoringMesh::SetCurrentPrimitiveScorer() : The "
213 "primitive scorer <"
214 << name << "> does not found." << G4endl;
215 }
216}
const char * name(G4int ptype)

Referenced by G4ScoreQuantityMessenger::SetNewValue().

◆ SetCurrentPSUnit()

void G4VScoringMesh::SetCurrentPSUnit ( const G4String & unit)

Definition at line 251 of file G4VScoringMesh.cc.

252{
253 if(fCurrentPS == nullptr)
254 {
255 G4String msg = "ERROR : G4VScoringMesh::GetCurrentPSUnit() : ";
256 msg += " Current primitive scorer is null.";
257 G4cerr << msg << G4endl;
258 }
259 else
260 {
261 fCurrentPS->SetUnit(unit);
262 }
263}

Referenced by G4ScoreQuantityMessenger::SetNewValue().

◆ SetDrawPSName()

void G4VScoringMesh::SetDrawPSName ( const G4String & psname)
inline

Definition at line 170 of file G4VScoringMesh.hh.

170{ fDrawPSName = psname; }

◆ SetFilter()

void G4VScoringMesh::SetFilter ( G4VSDFilter * filter)

Definition at line 185 of file G4VScoringMesh.cc.

186{
187 if(fCurrentPS == nullptr)
188 {
189 G4cerr << "ERROR : G4VScoringMesh::SetSDFilter() : a quantity must be "
190 "defined first. This method is ignored."
191 << G4endl;
192 return;
193 }
194 if(verboseLevel > 0)
195 G4cout << "G4VScoringMesh::SetFilter() : " << filter->GetName()
196 << " is set to " << fCurrentPS->GetName() << G4endl;
197
198 G4VSDFilter* oldFilter = fCurrentPS->GetFilter();
199 if(oldFilter != nullptr)
200 {
201 G4cout << "WARNING : G4VScoringMesh::SetFilter() : " << oldFilter->GetName()
202 << " is overwritten by " << filter->GetName() << G4endl;
203 }
204 fCurrentPS->SetFilter(filter);
205}

Referenced by G4ScoreQuantityMessenger::FParticleCommand(), G4ScoreQuantityMessenger::FParticleWithEnergyCommand(), and G4ScoreQuantityMessenger::SetNewValue().

◆ SetMeshElementLogical()

void G4VScoringMesh::SetMeshElementLogical ( G4LogicalVolume * val)
inline

Definition at line 188 of file G4VScoringMesh.hh.

189 {
191 }

Referenced by G4WorkerRunManager::ConstructScoringWorlds().

◆ SetNullToCurrentPrimitiveScorer()

void G4VScoringMesh::SetNullToCurrentPrimitiveScorer ( )
inline

Definition at line 176 of file G4VScoringMesh.hh.

176{ fCurrentPS = nullptr; }

Referenced by G4ScoreQuantityMessenger::CheckMeshPS().

◆ SetNumberOfSegments()

void G4VScoringMesh::SetNumberOfSegments ( G4int nSegment[3])

Definition at line 116 of file G4VScoringMesh.cc.

117{
120 {
121 for(G4int i = 0; i < 3; ++i)
122 fNSegment[i] = nSegment[i];
123 nMeshIsSet = true;
124 }
125 else
126 {
127 G4String message = " Number of bins has already been set and it cannot be changed.\n";
128 message += " This method is ignored.";
129 G4Exception("G4VScoringMesh::SetNumberOfSegments()",
130 "DigiHitsUtilsScoreVScoringMesh000", JustWarning, message);
131 }
132}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)

Referenced by G4ScoringProbe::G4ScoringProbe(), G4ScoringRealWorld::G4ScoringRealWorld(), G4ScoringProbe::LocateProbe(), G4ScoringMessenger::MeshBinCommand(), and G4ScoringRealWorld::SetupGeometry().

◆ SetParallelWorldProcess()

void G4VScoringMesh::SetParallelWorldProcess ( G4ParallelWorldProcess * proc)
inline

◆ SetPrimitiveScorer()

void G4VScoringMesh::SetPrimitiveScorer ( G4VPrimitiveScorer * ps)

Definition at line 161 of file G4VScoringMesh.cc.

162{
163 if(!ReadyForQuantity())
164 {
165 G4cerr << "ERROR : G4VScoringMesh::SetPrimitiveScorer() : "
166 << prs->GetName()
167 << " does not yet have mesh size or number of bins. Set them first."
168 << G4endl << "This Method is ignored." << G4endl;
169 return;
170 }
171 if(verboseLevel > 0)
172 G4cout << "G4VScoringMesh::SetPrimitiveScorer() : " << prs->GetName()
173 << " is registered."
174 << " 3D size: (" << fNSegment[0] << ", " << fNSegment[1] << ", "
175 << fNSegment[2] << ")" << G4endl;
176
177 prs->SetNijk(fNSegment[0], fNSegment[1], fNSegment[2]);
178 fCurrentPS = prs;
179 fMFD->RegisterPrimitive(prs);
180 auto map =
181 new G4THitsMap<G4StatDouble>(fWorldName, prs->GetName());
182 fMap[prs->GetName()] = map;
183}
G4bool ReadyForQuantity() const

Referenced by G4ScoreQuantityMessenger::SetNewValue().

◆ SetSize()

void G4VScoringMesh::SetSize ( G4double size[3])

Definition at line 78 of file G4VScoringMesh.cc.

79{
80 if(!sizeIsSet)
81 {
82 sizeIsSet = true;
83 for(G4int i = 0; i < 3; ++i)
84 {
85 fSize[i] = size[i];
86 }
87 }
88 else
89 {
90 G4String message = " Mesh size has already been set and it cannot be changed.\n";
91 message += " This method is ignored.";
92 G4Exception("G4VScoringMesh::SetSize()",
93 "DigiHitsUtilsScoreVScoringMesh000", JustWarning, message);
94 }
95}

Referenced by G4ScoringProbe::G4ScoringProbe(), G4ScoringRealWorld::G4ScoringRealWorld(), and G4ScoringMessenger::SetNewValue().

◆ SetupGeometry()

virtual void G4VScoringMesh::SetupGeometry ( G4VPhysicalVolume * fWorldPhys)
protectedpure virtual

◆ SetVerboseLevel()

void G4VScoringMesh::SetVerboseLevel ( G4int vl)
inline

Definition at line 178 of file G4VScoringMesh.hh.

178{ verboseLevel = vl; }

Referenced by G4ScoringManager::RegisterScoringMesh().

◆ WorkerConstruct()

void G4VScoringMesh::WorkerConstruct ( G4VPhysicalVolume * fWorldPhys)
virtual

Definition at line 444 of file G4VScoringMesh.cc.

445{
446 if(fConstructed)
447 {
449 {
450 fMeshElementLogical->SetSensitiveDetector(fMFD);
452 }
453
454 if(verboseLevel > 0)
455 G4cout << fWorldPhys->GetName() << " --- All quantities are reset."
456 << G4endl;
457 ResetScore();
458 }
459 else
460 {
461 fConstructed = true;
462 fMeshElementLogical->SetSensitiveDetector(fMFD);
463 }
464}
const G4String & GetName() const

Referenced by G4WorkerRunManager::ConstructScoringWorlds().

Member Data Documentation

◆ copyNumberLevel

G4int G4VScoringMesh::copyNumberLevel
protected

Definition at line 256 of file G4VScoringMesh.hh.

Referenced by G4VScoringMesh(), GetCopyNumberLevel(), and SetCopyNumberLevel().

◆ fActive

G4bool G4VScoringMesh::fActive
protected

Definition at line 228 of file G4VScoringMesh.hh.

Referenced by Activate(), G4VScoringMesh(), and IsActive().

◆ fAngle

◆ fCenterPosition

◆ fConstructed

G4bool G4VScoringMesh::fConstructed
protected

Definition at line 227 of file G4VScoringMesh.hh.

Referenced by Construct(), G4VScoringMesh(), and WorkerConstruct().

◆ fCurrentPS

◆ fDivisionAxisNames

G4String G4VScoringMesh::fDivisionAxisNames[3]
protected

◆ fDrawPSName

◆ fDrawUnit

◆ fDrawUnitValue

◆ fGeometryHasBeenDestroyed

G4bool G4VScoringMesh::fGeometryHasBeenDestroyed
protected

◆ fMap

◆ fMeshElementLogical

◆ fMFD

◆ fNSegment

◆ fParallelWorldProcess

G4ParallelWorldProcess* G4VScoringMesh::fParallelWorldProcess
protected

◆ fRotationMatrix

◆ fShape

◆ fSize

◆ fWorldName

◆ layeredMassFlg

G4bool G4VScoringMesh::layeredMassFlg
protected

Definition at line 261 of file G4VScoringMesh.hh.

Referenced by G4VScoringMesh(), LayeredMassFlg(), and G4ScoringProbe::SetMaterial().

◆ nMeshIsSet

G4bool G4VScoringMesh::nMeshIsSet
protected

Definition at line 243 of file G4VScoringMesh.hh.

Referenced by G4VScoringMesh(), ReadyForQuantity(), and SetNumberOfSegments().

◆ sizeIsSet

G4bool G4VScoringMesh::sizeIsSet
protected

Definition at line 242 of file G4VScoringMesh.hh.

Referenced by G4VScoringMesh(), GetSize(), ReadyForQuantity(), and SetSize().

◆ verboseLevel


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