Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
Public 멤버 함수 | Private 속성 | 모든 멤버 목록
cheprep::DefaultHepRepAttribute 클래스 참조abstract

#include <DefaultHepRepAttribute.h>

cheprep::DefaultHepRepAttribute에 대한 상속 다이어그램 :
HEPREP::HepRepAttribute cheprep::DefaultHepRepDefinition cheprep::DefaultHepRepInstance cheprep::DefaultHepRepPoint cheprep::DefaultHepRepType

Public 멤버 함수

 DefaultHepRepAttribute ()
 
 ~DefaultHepRepAttribute ()
 
std::set
< HEPREP::HepRepAttValue * > 
getAttValuesFromNode ()
 
void addAttValue (HEPREP::HepRepAttValue *hepRepAttValue)
 
void addAttValue (std::string key, char *value, int showLabel)
 
void addAttValue (std::string key, std::string value, int showLabel)
 
void addAttValue (std::string key, int value, int showLabel)
 
void addAttValue (std::string key, int64 value, int showLabel)
 
void addAttValue (std::string key, double value, int showLabel)
 
void addAttValue (std::string key, bool value, int showLabel)
 
void addAttValue (std::string key, std::vector< double > value, int showLabel)
 
void addAttValue (std::string key, double red, double green, double blue, double alpha, int showLabel)
 
HEPREP::HepRepAttValuegetAttValueFromNode (std::string lowerCaseName)
 
HEPREP::HepRepAttValueremoveAttValue (std::string key)
 
HEPREP::HepRepAttValuegetAttValue (std::string name)=0
 

Private 속성

std::map< std::string,
HEPREP::HepRepAttValue * > 
attValues
 

상세한 설명

DefaultHepRepAttribute.h 파일의 23 번째 라인에서 정의되었습니다.

생성자 & 소멸자 문서화

cheprep::DefaultHepRepAttribute::DefaultHepRepAttribute ( )

DefaultHepRepAttribute.cc 파일의 21 번째 라인에서 정의되었습니다.

cheprep::DefaultHepRepAttribute::~DefaultHepRepAttribute ( )

DefaultHepRepAttribute.cc 파일의 24 번째 라인에서 정의되었습니다.

멤버 함수 문서화

void cheprep::DefaultHepRepAttribute::addAttValue ( HEPREP::HepRepAttValue attValue)
virtual

Adds an attValue.

매개변수
attValueto be added.

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 38 번째 라인에서 정의되었습니다.

다음을 참조함 : HEPREP::HepRepAttValue::getLowerCaseName().

void cheprep::DefaultHepRepAttribute::addAttValue ( std::string  key,
char *  value,
int  showLabel 
)
virtual

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);

매개변수
keyname of attValue
valuevalue of attValue
showLabelshow this as label

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 44 번째 라인에서 정의되었습니다.

void cheprep::DefaultHepRepAttribute::addAttValue ( std::string  key,
std::string  value,
int  showLabel 
)
virtual

Adds an attValue.

매개변수
keyname of attValue
valuevalue of attValue
showLabelshow this as label

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 48 번째 라인에서 정의되었습니다.

void cheprep::DefaultHepRepAttribute::addAttValue ( std::string  key,
int  value,
int  showLabel 
)
virtual

Adds an attValue.

매개변수
keyname of attValue
valuevalue of attValue
showLabelshow this as label

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 56 번째 라인에서 정의되었습니다.

void cheprep::DefaultHepRepAttribute::addAttValue ( std::string  key,
int64  value,
int  showLabel 
)
virtual

Adds an attValue.

매개변수
keyname of attValue
valuevalue of attValue
showLabelshow this as label

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 52 번째 라인에서 정의되었습니다.

void cheprep::DefaultHepRepAttribute::addAttValue ( std::string  key,
double  value,
int  showLabel 
)
virtual

Adds an attValue.

매개변수
keyname of attValue
valuevalue of attValue
showLabelshow this as label

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 60 번째 라인에서 정의되었습니다.

void cheprep::DefaultHepRepAttribute::addAttValue ( std::string  key,
bool  value,
int  showLabel 
)
virtual

Adds an attValue.

매개변수
keyname of attValue
valuevalue of attValue
showLabelshow this as label

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 64 번째 라인에서 정의되었습니다.

void cheprep::DefaultHepRepAttribute::addAttValue ( std::string  key,
std::vector< double >  value,
int  showLabel 
)
virtual

Adds a Color attValue.

매개변수
keyname of attValue
valuevalue of attValue
showLabelshow this as label

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 68 번째 라인에서 정의되었습니다.

void cheprep::DefaultHepRepAttribute::addAttValue ( std::string  key,
double  red,
double  green,
double  blue,
double  alpha,
int  showLabel 
)
virtual

Adds a Color attValue.

매개변수
keyname of attValue
redcolor
greencolor
bluecolor
alphavalue
showLabelshow this as label

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 72 번째 라인에서 정의되었습니다.

HEPREP::HepRepAttValue* cheprep::DefaultHepRepAttribute::getAttValue ( std::string  name)
pure virtual

Returns the attValue specified by name. This attValue is normally searched on the node itself and then on its type, moving up the typetree.

매개변수
nameof attribute value.
반환값
attribute value.

HEPREP::HepRepAttribute를 구현.

cheprep::DefaultHepRepInstance, cheprep::DefaultHepRepType, cheprep::DefaultHepRepDefinition, cheprep::DefaultHepRepPoint에서 구현되었습니다.

HepRepAttValue * cheprep::DefaultHepRepAttribute::getAttValueFromNode ( std::string  lowerCaseName)
virtual

Returns a named attribute value from this node.

매개변수
lowerCaseNamename in all lowercase.
반환값
corresponding HepRepAttValue.

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 81 번째 라인에서 정의되었습니다.

다음을 참조함 : int().

다음에 의해서 참조됨 : cheprep::DefaultHepRepPoint::getAttValue(), cheprep::DefaultHepRepInstance::getAttValue().

set< HepRepAttValue * > cheprep::DefaultHepRepAttribute::getAttValuesFromNode ( )
virtual

Returns a collection of all attribute values from this node.

반환값
collection of HepRepAttValues.

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 30 번째 라인에서 정의되었습니다.

HepRepAttValue * cheprep::DefaultHepRepAttribute::removeAttValue ( std::string  key)
virtual

Remove the attvalue named by key.

매개변수
keyname of the attValue to be removed.
반환값
removed HepRepAttValue, or null if not removed.

HEPREP::HepRepAttribute를 구현.

DefaultHepRepAttribute.cc 파일의 87 번째 라인에서 정의되었습니다.

다음을 참조함 : int().

멤버 데이타 문서화

std::map<std::string, HEPREP::HepRepAttValue*> cheprep::DefaultHepRepAttribute::attValues
private

DefaultHepRepAttribute.h 파일의 26 번째 라인에서 정의되었습니다.


이 클래스에 대한 문서화 페이지는 다음의 파일들로부터 생성되었습니다.: