#include <HepRepDefinition.h>
Public 멤버 함수 | |
virtual | ~HepRepDefinition () |
Destructor. 더 자세히 ... | |
virtual void | addAttDef (std::string name, std::string desc, std::string category, std::string extra)=0 |
virtual void | addAttDef (HepRepAttDef *attDef)=0 |
virtual HepRepAttDef * | getAttDef (std::string name)=0 |
virtual std::set< HepRepAttDef * > | getAttDefsFromNode ()=0 |
virtual HepRepAttDef * | getAttDefFromNode (std::string lowerCaseName)=0 |
virtual void | addAttValue (HepRepAttValue *attValue)=0 |
virtual void | addAttValue (std::string key, char *value, int showLabel=HepRepConstants::SHOW_NONE)=0 |
virtual void | addAttValue (std::string key, std::string value, int showLabel=HepRepConstants::SHOW_NONE)=0 |
virtual void | addAttValue (std::string key, int64 value, int showLabel=HepRepConstants::SHOW_NONE)=0 |
virtual void | addAttValue (std::string key, int value, int showLabel=HepRepConstants::SHOW_NONE)=0 |
virtual void | addAttValue (std::string key, double value, int showLabel=HepRepConstants::SHOW_NONE)=0 |
virtual void | addAttValue (std::string key, bool value, int showLabel=HepRepConstants::SHOW_NONE)=0 |
virtual void | addAttValue (std::string key, std::vector< double > value, int showLabel=HepRepConstants::SHOW_NONE)=0 |
virtual void | addAttValue (std::string key, double red, double green, double blue, double alpha=1.0, int showLabel=HepRepConstants::SHOW_NONE)=0 |
virtual HepRepAttValue * | removeAttValue (std::string key)=0 |
virtual HepRepAttValue * | getAttValue (std::string name)=0 |
virtual std::set < HepRepAttValue * > | getAttValuesFromNode ()=0 |
virtual HepRepAttValue * | getAttValueFromNode (std::string lowerCaseName)=0 |
HepRepDefinition interface.
HepRepDefinition.h 파일의 27 번째 라인에서 정의되었습니다.
|
inlinevirtual |
Destructor.
HepRepDefinition.h 파일의 31 번째 라인에서 정의되었습니다.
|
pure virtual |
Adds an attdef.
name | name of the definition. |
desc | description of the definition. |
category | category of the definition. |
extra | extra info of the definition. |
cheprep::DefaultHepRepDefinition에서 구현되었습니다.
다음에 의해서 참조됨 : G4HepRepSceneHandler::addAttDefs(), G4HepRepSceneHandler::addTopLevelAttributes(), G4HepRepSceneHandler::getGeometryRootType().
|
pure virtual |
|
pure virtualinherited |
Adds an attValue.
attValue | to be added. |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
다음에 의해서 참조됨 : G4HepRepSceneHandler::addAttributes(), G4HepRepSceneHandler::AddSolid(), G4HepRepSceneHandler::addTopLevelAttributes(), G4HepRepSceneHandler::getCalHitFaceType(), G4HepRepSceneHandler::getCalHitType(), G4HepRepSceneHandler::getEventType(), G4HepRepSceneHandler::getGeometryRootType(), G4HepRepSceneHandler::getHitType(), G4HepRepSceneHandler::getTrajectoryType(), G4HepRepSceneHandler::setAttribute().
|
pure virtualinherited |
Adds a char* attValue as a String. This call should be mapped to addAttValue(std::string, std::string, int); and necessary because C++ converts char* into bool and would thus call addAttValue(std::string, bool, int) for a call such as addAttValue("drawAs", "Cylinder", 0);
key | name of attValue |
value | value of attValue |
showLabel | show this as label |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
|
pure virtualinherited |
Adds an attValue.
key | name of attValue |
value | value of attValue |
showLabel | show this as label |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
|
pure virtualinherited |
Adds an attValue.
key | name of attValue |
value | value of attValue |
showLabel | show this as label |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
|
pure virtualinherited |
Adds an attValue.
key | name of attValue |
value | value of attValue |
showLabel | show this as label |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
|
pure virtualinherited |
Adds an attValue.
key | name of attValue |
value | value of attValue |
showLabel | show this as label |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
|
pure virtualinherited |
Adds an attValue.
key | name of attValue |
value | value of attValue |
showLabel | show this as label |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
|
pure virtualinherited |
Adds a Color attValue.
key | name of attValue |
value | value of attValue |
showLabel | show this as label |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
|
pure virtualinherited |
Adds a Color attValue.
key | name of attValue |
red | color |
green | color |
blue | color |
alpha | value |
showLabel | show this as label |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
|
pure virtual |
Return a named attribute definition searched on this node and any parent nodes.
name | of attribute definition. |
cheprep::DefaultHepRepType, cheprep::DefaultHepRepDefinition에서 구현되었습니다.
|
pure virtual |
Returns a named attribute definition defined on this node.
lowerCaseName | name of the attribute in lower case. |
cheprep::DefaultHepRepDefinition에서 구현되었습니다.
다음에 의해서 참조됨 : cheprep::DefaultHepRepType::getAttDef().
|
pure virtual |
Returns a collection of all attribute definitions defined on this node.
cheprep::DefaultHepRepDefinition에서 구현되었습니다.
다음에 의해서 참조됨 : cheprep::XMLHepRepWriter::write().
|
pure virtualinherited |
Returns the attValue specified by name. This attValue is normally searched on the node itself and then on its type, moving up the typetree.
name | of attribute value. |
cheprep::DefaultHepRepInstance, cheprep::DefaultHepRepAttribute, cheprep::DefaultHepRepType, cheprep::DefaultHepRepDefinition, cheprep::DefaultHepRepPoint에서 구현되었습니다.
다음에 의해서 참조됨 : cheprep::DefaultHepRepPoint::getAttValue(), cheprep::DefaultHepRepInstance::getAttValue(), G4HepRepSceneHandler::setAttribute().
|
pure virtualinherited |
Returns a named attribute value from this node.
lowerCaseName | name in all lowercase. |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
다음에 의해서 참조됨 : cheprep::DefaultHepRepType::getAttValue(), G4HepRepSceneHandler::setAttribute(), cheprep::XMLHepRepWriter::write().
|
pure virtualinherited |
Returns a collection of all attribute values from this node.
cheprep::DefaultHepRepAttribute에서 구현되었습니다.
다음에 의해서 참조됨 : cheprep::XMLHepRepWriter::write().
|
pure virtualinherited |
Remove the attvalue named by key.
key | name of the attValue to be removed. |
cheprep::DefaultHepRepAttribute에서 구현되었습니다.