Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:55:58

0001 //   COCOA class implementation file

0002 // Id:  CocoaSolidShapeTubs.cc

0003 // CAT: Model

0004 //

0005 //   History: v1.0

0006 //   Pedro Arce

0007 #include <fstream>
0008 #include <map>
0009 
0010 #include "Alignment/CocoaDDLObjects/interface/CocoaSolidShapeTubs.h"
0011 
0012 CocoaSolidShapeTubs::CocoaSolidShapeTubs(
0013     const ALIstring type, ALIfloat pRMin, ALIfloat pRMax, ALIfloat pDz, ALIfloat pSPhi, ALIfloat pDPhi)
0014     : CocoaSolidShape(type) {
0015   theInnerRadius = pRMin;
0016   theOuterRadius = pRMax;
0017   theZHalfLength = pDz;
0018   theStartPhiAngle = pSPhi;
0019   theDeltaPhiAngle = pDPhi;
0020 }