test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DDLCone.cc
Go to the documentation of this file.
1 /***************************************************************************
2  DDLCone.cc - description
3  -------------------
4  begin : Mon Oct 29 2001
5  email : case@ucdhep.ucdavis.edu
6  ***************************************************************************/
7 
8 /***************************************************************************
9  * *
10  * DDDParser sub-component of DDD *
11  * *
12  ***************************************************************************/
13 
15 
19 
21 
23  : DDLSolid( myreg )
24 {}
25 
27 {}
28 
29 // Upon encountering the end of the Cone element, call DDCore.
30 void
32 {
33  DCOUT_V( 'P', "DDLCone::processElement started" );
36 
37  DDSolid ddcone = DDSolidFactory::cons( getDDName( nmspace ),
38  ev.eval( nmspace, atts.find( "dz" )->second ),
39  ev.eval( nmspace, atts.find( "rMin1" )->second ),
40  ev.eval( nmspace, atts.find( "rMax1" )->second ),
41  ev.eval( nmspace, atts.find( "rMin2" )->second ),
42  ev.eval( nmspace, atts.find( "rMax2" )->second ),
43  ev.eval( nmspace, atts.find( "startPhi" )->second ),
44  ev.eval( nmspace, atts.find( "deltaPhi" )->second ));
45 
46  DDLSolid::setReference( nmspace, cpv );
47 
48  DCOUT_V( 'P', "DDLCone::processElement completed" );
49 }
DDLElementRegistry * myRegistry_
Definition: DDXMLElement.h:186
static DDSolid cons(const DDName &name, double zhalf, double rInMinusZ, double rOutMinusZ, double rInPlusZ, double rOutPlusZ, double phiFrom, double deltaPhi)
Definition: DDSolid.cc:763
virtual const DDXMLAttribute & getAttributeSet(size_t aIndex=0) const
Get a "row" of attributes, i.e. one attribute set.
Definition: DDXMLElement.cc:79
virtual ~DDLCone(void)
Destructor.
Definition: DDLCone.cc:26
bool ev
type of data representation of DDCompactView
Definition: DDCompactView.h:77
std::map< std::string, std::string > DDXMLAttribute
Definition: DDXMLElement.h:55
A DDSolid represents the shape of a part.
Definition: DDSolid.h:35
ClhepEvaluator & evaluator()
DDLCone(DDLElementRegistry *myreg)
Constructor.
Definition: DDLCone.cc:22
virtual void processElement(const std::string &name, const std::string &nmspace, DDCompactView &cpv)
Processing the element.
Definition: DDLCone.cc:31
#define DCOUT_V(M_v_Y, M_v_S)
Definition: DDdebug.h:54
DDLSolid processes Box elements.
Definition: DDLSolid.h:27
double eval(const std::string &ns, const std::string &expr)
The main class for processing parsed elements.
virtual const DDName getDDName(const std::string &defaultNS, const std::string &attname=std::string("name"), size_t aIndex=0)
Definition: DDXMLElement.cc:86
void setReference(const std::string &nmspace, DDCompactView &cpv)
Definition: DDLSolid.cc:26