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:  CocoaSolidShapeBox.cc

0003 // CAT: Model

0004 //

0005 //   History: v1.0

0006 //   Pedro Arce

0007 #include <fstream>
0008 #include <map>
0009 
0010 #include "Alignment/CocoaDDLObjects/interface/CocoaSolidShapeBox.h"
0011 
0012 CocoaSolidShapeBox::CocoaSolidShapeBox(ALIstring type, ALIfloat xdim, ALIfloat ydim, ALIfloat zdim)
0013     : CocoaSolidShape(type) {
0014   theXHalfLength = xdim;
0015   theYHalfLength = ydim;
0016   theZHalfLength = zdim;
0017 }