00001 // COCOA class implementation file 00002 //Id: CocoaSolidShapeTubs.cc 00003 //CAT: Model 00004 // 00005 // History: v1.0 00006 // Pedro Arce 00007 #include <map> 00008 #include <fstream> 00009 00010 #include "Alignment/CocoaDDLObjects/interface/CocoaSolidShapeTubs.h" 00011 00012 CocoaSolidShapeTubs::CocoaSolidShapeTubs( const ALIstring type, ALIfloat pRMin, ALIfloat pRMax, ALIfloat pDz, ALIfloat pSPhi, ALIfloat pDPhi ) : CocoaSolidShape( type ) 00013 { 00014 00015 theInnerRadius = pRMin; 00016 theOuterRadius = pRMax; 00017 theZHalfLength = pDz; 00018 theStartPhiAngle = pSPhi; 00019 theDeltaPhiAngle = pDPhi; 00020 } 00021