Go to the documentation of this file.00001 #include "RecoTauTag/TauTagTools/interface/ECALBounds.h"
00002
00003 void ECALBounds::initialize(){
00004 const float epsilon = 0.001;
00005 Surface::RotationType rot;
00006 theCylinder=new BoundCylinder(Surface::PositionType(0,0,0),rot,
00007 SimpleCylinderBounds(barrel_innerradius()-epsilon,
00008 barrel_innerradius()+epsilon,
00009 -barrel_halfLength(),
00010 barrel_halfLength()));
00011
00012
00013 theNegativeDisk=new BoundDisk(Surface::PositionType(0,0,-endcap_innerZ()),rot,
00014 SimpleDiskBounds(0,endcap_outerradius(),-epsilon,epsilon));
00015
00016 thePositiveDisk =
00017 new BoundDisk( Surface::PositionType(0,0,endcap_innerZ()),rot,
00018 SimpleDiskBounds(0,endcap_outerradius(),-epsilon,epsilon));
00019
00020
00021 theInit = true;
00022 }
00023
00024
00025 ReferenceCountingPointer<Surface> ECALBounds::theCylinder = 0;
00026 ReferenceCountingPointer<Surface> ECALBounds::theNegativeDisk = 0;
00027 ReferenceCountingPointer<Surface> ECALBounds::thePositiveDisk = 0;
00028 bool ECALBounds::theInit = false;
00029
00030