#include <G4ModelCommandsT.hh>
Inheritance diagram for G4ModelCmdSetStepPtsVisible< M >:
Public Member Functions | |
G4ModelCmdSetStepPtsVisible (M *model, const G4String &placement, const G4String &cmdName="setStepPtsVisible") | |
Protected Member Functions | |
void | Apply (const G4bool &myBool) |
Definition at line 377 of file G4ModelCommandsT.hh.
G4ModelCmdSetStepPtsVisible< M >::G4ModelCmdSetStepPtsVisible | ( | M * | model, | |
const G4String & | placement, | |||
const G4String & | cmdName = "setStepPtsVisible" | |||
) | [inline] |
Definition at line 381 of file G4ModelCommandsT.hh.
References G4ModelCmdApplyBool< M >::Command(), and G4UIcommand::SetGuidance().
00383 :G4ModelCmdApplyBool<M>(model, placement, cmdName) 00384 { 00385 G4ModelCmdApplyBool<M>::Command()->SetGuidance("Set step points visible command"); 00386 }
void G4ModelCmdSetStepPtsVisible< M >::Apply | ( | const G4bool & | myBool | ) | [inline, protected, virtual] |
Implements G4ModelCmdApplyBool< M >.
Definition at line 390 of file G4ModelCommandsT.hh.
References G4VModelCommand< T >::Model().
00390 { 00391 G4VModelCommand<M>::Model()->SetStepPtsVisible(myBool); 00392 }