Geant4-11
Public Member Functions | Protected Attributes | Private Attributes
G4DigiModel Class Reference

#include <G4DigiModel.hh>

Inheritance diagram for G4DigiModel:
G4VModel

Public Member Functions

virtual void DescribeYourselfTo (G4VGraphicsScene &)
 
 G4DigiModel ()
 
virtual G4String GetCurrentDescription () const
 
const G4VDigiGetCurrentDigi () const
 
virtual G4String GetCurrentTag () const
 
const G4VisExtentGetExtent () const
 
const G4StringGetGlobalDescription () const
 
const G4StringGetGlobalTag () const
 
const G4ModelingParametersGetModelingParameters () const
 
const G4StringGetType () const
 
void SetExtent (const G4VisExtent &)
 
void SetGlobalDescription (const G4String &)
 
void SetGlobalTag (const G4String &)
 
void SetModelingParameters (const G4ModelingParameters *)
 
void SetType (const G4String &)
 
virtual G4bool Validate (G4bool warn=true)
 
virtual ~G4DigiModel ()
 

Protected Attributes

G4VisExtent fExtent
 
G4String fGlobalDescription
 
G4String fGlobalTag
 
const G4ModelingParametersfpMP
 
G4String fType
 

Private Attributes

const G4VDigifpCurrentDigi
 

Detailed Description

Definition at line 46 of file G4DigiModel.hh.

Constructor & Destructor Documentation

◆ G4DigiModel()

G4DigiModel::G4DigiModel ( )

Definition at line 40 of file G4DigiModel.cc.

40 :
42{
43 fType = "G4DigiModel";
44 fGlobalTag = "G4DigiModel for all digis.";
46}
const G4VDigi * fpCurrentDigi
Definition: G4DigiModel.hh:62
G4String fGlobalDescription
Definition: G4VModel.hh:100
G4String fType
Definition: G4VModel.hh:98
G4String fGlobalTag
Definition: G4VModel.hh:99

References G4VModel::fGlobalDescription, G4VModel::fGlobalTag, and G4VModel::fType.

◆ ~G4DigiModel()

G4DigiModel::~G4DigiModel ( )
virtual

Definition at line 38 of file G4DigiModel.cc.

38{}

Member Function Documentation

◆ DescribeYourselfTo()

void G4DigiModel::DescribeYourselfTo ( G4VGraphicsScene sceneHandler)
virtual

Implements G4VModel.

Definition at line 48 of file G4DigiModel.cc.

49{
50 const G4Event* event = fpMP->GetEvent();
51 if (event) {
52 G4DCofThisEvent* DCE = event -> GetDCofThisEvent ();
53 if (DCE) {
54 G4int nDC = DCE -> GetCapacity ();
55 for (int iDC = 0; iDC < nDC; iDC++) {
56 G4VDigiCollection* DC = DCE -> GetDC (iDC);
57 if (DC) {
58 for(size_t iDigi = 0; iDigi < DC->GetSize(); ++iDigi) {
59 fpCurrentDigi = DC -> GetDigi (iDigi);
60 if (fpCurrentDigi) sceneHandler.AddCompound (*fpCurrentDigi);
61 }
62 }
63 }
64 }
65 }
66}
int G4int
Definition: G4Types.hh:85
const G4Event * GetEvent() const
virtual size_t GetSize() const
virtual void AddCompound(const G4VTrajectory &)=0
const G4ModelingParameters * fpMP
Definition: G4VModel.hh:102

References G4VGraphicsScene::AddCompound(), fpCurrentDigi, G4VModel::fpMP, G4ModelingParameters::GetEvent(), and G4VDigiCollection::GetSize().

◆ GetCurrentDescription()

G4String G4VModel::GetCurrentDescription ( ) const
virtualinherited

Reimplemented in G4GPSModel, and G4PhysicalVolumeModel.

Definition at line 51 of file G4VModel.cc.

51 {
52 // Override in concrete class if concept of "current" is meaningful.
53 return fGlobalDescription;
54}

References G4VModel::fGlobalDescription.

Referenced by G4OpenGLStoredQtSceneHandler::ExtraPOProcessing().

◆ GetCurrentDigi()

const G4VDigi * G4DigiModel::GetCurrentDigi ( ) const
inline

Definition at line 57 of file G4DigiModel.hh.

58 {return fpCurrentDigi;}

References fpCurrentDigi.

◆ GetCurrentTag()

G4String G4VModel::GetCurrentTag ( ) const
virtualinherited

Reimplemented in G4GPSModel, and G4PhysicalVolumeModel.

Definition at line 46 of file G4VModel.cc.

46 {
47 // Override in concrete class if concept of "current" is meaningful.
48 return fGlobalTag;
49}

References G4VModel::fGlobalTag.

Referenced by G4Qt3DSceneHandler::AddPrimitive(), and G4ToolsSGSceneHandler::AddPrimitive().

◆ GetExtent()

const G4VisExtent & G4VModel::GetExtent ( ) const
inherited

◆ GetGlobalDescription()

const G4String & G4VModel::GetGlobalDescription ( ) const
inherited

◆ GetGlobalTag()

const G4String & G4VModel::GetGlobalTag ( ) const
inherited

◆ GetModelingParameters()

const G4ModelingParameters * G4VModel::GetModelingParameters ( ) const
inherited

◆ GetType()

const G4String & G4VModel::GetType ( ) const
inherited

◆ SetExtent()

void G4VModel::SetExtent ( const G4VisExtent )
inherited

◆ SetGlobalDescription()

void G4VModel::SetGlobalDescription ( const G4String )
inherited

◆ SetGlobalTag()

void G4VModel::SetGlobalTag ( const G4String )
inherited

◆ SetModelingParameters()

void G4VModel::SetModelingParameters ( const G4ModelingParameters )
inherited

◆ SetType()

void G4VModel::SetType ( const G4String )
inherited

◆ Validate()

G4bool G4VModel::Validate ( G4bool  warn = true)
virtualinherited

Reimplemented in G4PhysicalVolumeModel, and G4LogicalVolumeModel.

Definition at line 56 of file G4VModel.cc.

56 {
57 return true;
58}

Field Documentation

◆ fExtent

G4VisExtent G4VModel::fExtent
protectedinherited

◆ fGlobalDescription

G4String G4VModel::fGlobalDescription
protectedinherited

◆ fGlobalTag

G4String G4VModel::fGlobalTag
protectedinherited

◆ fpCurrentDigi

const G4VDigi* G4DigiModel::fpCurrentDigi
private

Definition at line 62 of file G4DigiModel.hh.

Referenced by DescribeYourselfTo(), and GetCurrentDigi().

◆ fpMP

const G4ModelingParameters* G4VModel::fpMP
protectedinherited

◆ fType

G4String G4VModel::fType
protectedinherited

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