CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_8_patch3/src/Alignment/CocoaDDLObjects/src/CocoaSolidShapeBox.cc

Go to the documentation of this file.
00001 //   COCOA class implementation file
00002 //Id:  CocoaSolidShapeBox.cc
00003 //CAT: Model
00004 //
00005 //   History: v1.0 
00006 //   Pedro Arce
00007 #include <map>
00008 #include <fstream>
00009 
00010 #include "Alignment/CocoaDDLObjects/interface/CocoaSolidShapeBox.h"
00011 
00012 
00013 CocoaSolidShapeBox::CocoaSolidShapeBox( ALIstring type, ALIfloat xdim, ALIfloat ydim, ALIfloat zdim ): CocoaSolidShape( type )
00014 { 
00015 
00016   theXHalfLength = xdim;
00017   theYHalfLength = ydim;
00018   theZHalfLength = zdim;
00019 }
00020