Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
cheprep::DefaultHepRepFactory Class Reference

#include <DefaultHepRepFactory.h>

Inheritance diagram for cheprep::DefaultHepRepFactory:
HEPREP::HepRepFactory cheprep::XMLHepRepFactory

Public Member Functions

 DefaultHepRepFactory ()
 
 ~DefaultHepRepFactory ()
 
HEPREP::HepRepReadercreateHepRepReader (std::istream *in)
 
HEPREP::HepRepReadercreateHepRepReader (std::string filename)
 
HEPREP::HepRepWritercreateHepRepWriter (std::ostream *out, bool randomAccess, bool compress)
 
HEPREP::HepRepPointcreateHepRepPoint (HEPREP::HepRepInstance *instance, double x, double y, double z)
 
HEPREP::HepRepInstancecreateHepRepInstance (HEPREP::HepRepInstance *parent, HEPREP::HepRepType *type)
 
HEPREP::HepRepInstancecreateHepRepInstance (HEPREP::HepRepInstanceTree *parent, HEPREP::HepRepType *type)
 
HEPREP::HepRepTreeIDcreateHepRepTreeID (std::string name, std::string version, std::string qualifier="top-level")
 
HEPREP::HepRepActioncreateHepRepAction (std::string name, std::string expression)
 
HEPREP::HepRepInstanceTreecreateHepRepInstanceTree (std::string name, std::string version, HEPREP::HepRepTreeID *typeTreeID)
 
HEPREP::HepRepTypecreateHepRepType (HEPREP::HepRepType *parent, std::string name)
 
HEPREP::HepRepTypecreateHepRepType (HEPREP::HepRepTypeTree *parent, std::string name)
 
HEPREP::HepRepTypeTreecreateHepRepTypeTree (HEPREP::HepRepTreeID *treeID)
 
HEPREP::HepRepcreateHepRep ()
 
- Public Member Functions inherited from HEPREP::HepRepFactory
virtual ~HepRepFactory ()
 Destructor. More...
 

Detailed Description

Definition at line 28 of file DefaultHepRepFactory.h.

Constructor & Destructor Documentation

cheprep::DefaultHepRepFactory::DefaultHepRepFactory ( )

Definition at line 26 of file DefaultHepRepFactory.cc.

26  {
27 }
cheprep::DefaultHepRepFactory::~DefaultHepRepFactory ( )

Definition at line 29 of file DefaultHepRepFactory.cc.

29  {
30 }

Member Function Documentation

HepRep * cheprep::DefaultHepRepFactory::createHepRep ( )
virtual

Creates a HepRep.

Implements HEPREP::HepRepFactory.

Definition at line 85 of file DefaultHepRepFactory.cc.

85  {
86  return new DefaultHepRep();
87 }
HepRepAction * cheprep::DefaultHepRepFactory::createHepRepAction ( std::string  name,
std::string  expression 
)
virtual

Creates a HepRepAction.

Parameters
nameof the action.
expressionof the action.

Implements HEPREP::HepRepFactory.

Definition at line 64 of file DefaultHepRepFactory.cc.

64  {
65  return new DefaultHepRepAction(name, expression);
66 }
const XML_Char * name
HepRepInstance * cheprep::DefaultHepRepFactory::createHepRepInstance ( HEPREP::HepRepInstance parent,
HEPREP::HepRepType type 
)
virtual

Creates a HepRepInstance.

to add the instance to. type the associated type.

Implements HEPREP::HepRepFactory.

Definition at line 52 of file DefaultHepRepFactory.cc.

52  {
53  return new DefaultHepRepInstance(parent, type);
54 }
HepRepInstance * cheprep::DefaultHepRepFactory::createHepRepInstance ( HEPREP::HepRepInstanceTree parent,
HEPREP::HepRepType type 
)
virtual

Creates a HepRepInstance.

to add the instance to. type the associated type.

Implements HEPREP::HepRepFactory.

Definition at line 56 of file DefaultHepRepFactory.cc.

56  {
57  return new DefaultHepRepInstance(parent, type);
58 }
HepRepInstanceTree * cheprep::DefaultHepRepFactory::createHepRepInstanceTree ( std::string  name,
std::string  version,
HEPREP::HepRepTreeID typeTree 
)
virtual

Creates a HepRepInstanceTree.

The tree needs to be added to the HepRep.

Parameters
nameof the instancetree.
versionof the instancetree.
typeTreeassociated typetree.

Implements HEPREP::HepRepFactory.

Definition at line 68 of file DefaultHepRepFactory.cc.

69  {
70  return new DefaultHepRepInstanceTree(name, version, typeTreeID);
71 }
const XML_Char * version
const XML_Char * name
HepRepPoint * cheprep::DefaultHepRepFactory::createHepRepPoint ( HEPREP::HepRepInstance instance,
double  x,
double  y,
double  z 
)
virtual

Creates a HepRepPoint.

Parameters
instanceto add the point to.
xx coordinate of point.
yy coordinate of point.
zz coordinate of point.

Implements HEPREP::HepRepFactory.

Definition at line 47 of file DefaultHepRepFactory.cc.

48  {
49  return new DefaultHepRepPoint(instance, x, y, z);
50 }
G4double z
Definition: TRTMaterials.hh:39
HEPREP::HepRepReader* cheprep::DefaultHepRepFactory::createHepRepReader ( std::istream *  in)
virtual

Creates a HepRepReader from a stream.

Parameters
ininput stream.

Implements HEPREP::HepRepFactory.

Reimplemented in cheprep::XMLHepRepFactory.

HepRepReader * cheprep::DefaultHepRepFactory::createHepRepReader ( std::string  inputFileName)
virtual

Creates a HepRepReader from a file name.

Parameters
inputFileNamefile name.

Implements HEPREP::HepRepFactory.

Reimplemented in cheprep::XMLHepRepFactory.

Definition at line 37 of file DefaultHepRepFactory.cc.

37  {
38  cerr << "DefaultHepRepFactory::createHepRepReader not implemented" << endl;
39  return NULL;
40 }
HepRepTreeID * cheprep::DefaultHepRepFactory::createHepRepTreeID ( std::string  name,
std::string  version,
std::string  qualifier = "top-level" 
)
virtual

Creates a HepRepTreeID.

Parameters
nameof the treeID.
versionof the treeID.
qualifierof the treeID.

Implements HEPREP::HepRepFactory.

Definition at line 60 of file DefaultHepRepFactory.cc.

60  {
61  return new DefaultHepRepTreeID(name, version, qualifier);
62 }
const XML_Char * version
const XML_Char * name
HepRepType * cheprep::DefaultHepRepFactory::createHepRepType ( HEPREP::HepRepType parent,
std::string  name 
)
virtual

Creates a HepRepType.

Parameters
parentto add this type to.
nameof the type to create.

Implements HEPREP::HepRepFactory.

Definition at line 73 of file DefaultHepRepFactory.cc.

73  {
74  return new DefaultHepRepType(parent, name);
75 }
const XML_Char * name
HepRepType * cheprep::DefaultHepRepFactory::createHepRepType ( HEPREP::HepRepTypeTree parent,
std::string  name 
)
virtual

Creates a HepRepType.

Parameters
parentto add this type to.
nameof the type to create.

Implements HEPREP::HepRepFactory.

Definition at line 77 of file DefaultHepRepFactory.cc.

77  {
78  return new DefaultHepRepType(parent, name);
79 }
const XML_Char * name
HepRepTypeTree * cheprep::DefaultHepRepFactory::createHepRepTypeTree ( HEPREP::HepRepTreeID treeID)
virtual

Creates a HepRepTypeTree.

The tree needs to be added to the HepRep.

Parameters
treeIDto name the tree being created.

Implements HEPREP::HepRepFactory.

Definition at line 81 of file DefaultHepRepFactory.cc.

81  {
82  return new DefaultHepRepTypeTree(treeID);
83 }
HepRepWriter * cheprep::DefaultHepRepFactory::createHepRepWriter ( std::ostream *  out,
bool  randomAccess,
bool  compress 
)
virtual

Creates a HepRepWriter.

Parameters
outoutput stream.
randomAccesscreate a writer in a format that will allow random access (may be ignored).
compresscreate a writer that uses compression (may be ignored).

Implements HEPREP::HepRepFactory.

Reimplemented in cheprep::XMLHepRepFactory.

Definition at line 42 of file DefaultHepRepFactory.cc.

42  {
43  cerr << "DefaultHepRepFactory::createHepRepWriter not implemented" << endl;
44  return NULL;
45 }

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