CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Attributes
CastorGeometry Class Reference

#include <CastorGeometry.h>

Inheritance diagram for CastorGeometry:
CaloSubdetectorGeometry

Public Types

enum  { k_NumberOfCellsForCorners = HcalCastorDetId::kSizeForDenseIndexing }
 
enum  { k_NumberOfShapes = 4 }
 
enum  { k_NumberOfParametersPerShape = 6 }
 
typedef CastorGeometryRecord AlignedRecord
 
typedef CastorAlignmentRcd AlignmentRecord
 
typedef CaloCellGeometry::CCGFloat CCGFloat
 
typedef std::vector
< IdealCastorTrapezoid
CellVec
 
typedef HcalCastorDetId DetIdType
 
typedef PCastorRcd PGeometryRecord
 
typedef CaloCellGeometry::Pt3D Pt3D
 
typedef CaloCellGeometry::Pt3DVec Pt3DVec
 
typedef CaloCellGeometry::Tr3D Tr3D
 
- Public Types inherited from CaloSubdetectorGeometry
typedef CaloCellGeometry::CCGFloat CCGFloat
 
typedef std::set< DetIdDetIdSet
 
typedef std::vector< CCGFloatDimVec
 
typedef std::vector< unsigned int > IVec
 
typedef CaloCellGeometry::ParMgr ParMgr
 
typedef CaloCellGeometry::ParVec ParVec
 
typedef CaloCellGeometry::ParVecVec ParVecVec
 
typedef std::vector< CCGFloatTrVec
 

Public Member Functions

 CastorGeometry ()
 
 CastorGeometry (const CastorTopology *topology)
 
virtual DetId getClosestCell (const GlobalPoint &r) const
 
virtual void newCell (const GlobalPoint &f1, const GlobalPoint &f2, const GlobalPoint &f3, const CCGFloat *parm, const DetId &detId)
 
virtual unsigned int numberOfParametersPerShape () const
 
virtual unsigned int numberOfShapes () const
 
virtual unsigned int numberOfTransformParms () const
 
virtual ~CastorGeometry ()
 
- Public Member Functions inherited from CaloSubdetectorGeometry
void allocateCorners (CaloCellGeometry::CornersVec::size_type n)
 
void allocatePar (ParVec::size_type n, unsigned int m)
 
 CaloSubdetectorGeometry ()
 
CaloCellGeometry::CornersMgrcornersMgr ()
 
CCGFloat deltaEta (const DetId &detId) const
 
CCGFloat deltaPhi (const DetId &detId) const
 
virtual void fillDefaultNamedParameters () const
 
virtual DetIdSet getCells (const GlobalPoint &r, double dR) const
 Get a list of all cells within a dR of the given cell. More...
 
virtual const CaloCellGeometrygetGeometry (const DetId &id) const
 Get the cell geometry of a given detector id. Should return false if not found. More...
 
void getSummary (TrVec &trVector, IVec &iVector, DimVec &dimVector) const
 
virtual const std::vector
< DetId > & 
getValidDetIds (DetId::Detector det=DetId::Detector(0), int subdet=0) const
 Get a list of valid detector ids (for the given subdetector) More...
 
virtual void initializeParms ()
 
ParMgrparMgr ()
 
const ParMgrparMgrConst () const
 
ParVecVecparVecVec ()
 
const ParVecVecparVecVec () const
 
virtual bool present (const DetId &id) const
 is this detid present in the geometry? More...
 
virtual ~CaloSubdetectorGeometry ()
 The base class DOES assume that it owns the CaloCellGeometry objects. More...
 

Static Public Member Functions

static unsigned int alignmentTransformIndexGlobal (const DetId &id)
 
static unsigned int alignmentTransformIndexLocal (const DetId &id)
 
static std::string dbString ()
 
static void localCorners (Pt3DVec &lc, const CCGFloat *pv, unsigned int i, Pt3D &ref)
 
static unsigned int numberOfAlignments ()
 
static std::string producerTag ()
 

Protected Member Functions

virtual const CaloCellGeometrycellGeomPtr (uint32_t index) const
 

Private Attributes

DetId::Detector lastReqDet_
 
int lastReqSubdet_
 
CellVec m_cellVec
 
bool m_ownsTopology
 
const CastorTopologytheTopology
 

Additional Inherited Members

- Static Protected Member Functions inherited from CaloSubdetectorGeometry
static CCGFloat deltaR (const GlobalPoint &p1, const GlobalPoint &p2)
 
- Protected Attributes inherited from CaloSubdetectorGeometry
ParVecVec m_parVecVec
 
std::vector< DetIdm_validIds
 

Detailed Description

Definition at line 14 of file CastorGeometry.h.

Member Typedef Documentation

Definition at line 26 of file CastorGeometry.h.

Definition at line 25 of file CastorGeometry.h.

Definition at line 20 of file CastorGeometry.h.

Definition at line 18 of file CastorGeometry.h.

Definition at line 28 of file CastorGeometry.h.

Definition at line 27 of file CastorGeometry.h.

Definition at line 21 of file CastorGeometry.h.

Definition at line 22 of file CastorGeometry.h.

Definition at line 23 of file CastorGeometry.h.

Member Enumeration Documentation

anonymous enum
anonymous enum
Enumerator
k_NumberOfShapes 

Definition at line 32 of file CastorGeometry.h.

anonymous enum
Enumerator
k_NumberOfParametersPerShape 

Definition at line 34 of file CastorGeometry.h.

Constructor & Destructor Documentation

CastorGeometry::CastorGeometry ( )

Definition at line 12 of file CastorGeometry.cc.

CastorGeometry::CastorGeometry ( const CastorTopology topology)
explicit

Definition at line 20 of file CastorGeometry.cc.

20  :
21  theTopology(topology),
23  lastReqSubdet_(0),
24  m_ownsTopology ( false ),
26 {}
DetId::Detector lastReqDet_
const CastorTopology * theTopology
Detector
Definition: DetId.h:26
CastorGeometry::~CastorGeometry ( )
virtual

Definition at line 29 of file CastorGeometry.cc.

References m_ownsTopology, and theTopology.

30 {
31  if( m_ownsTopology ) delete theTopology ;
32 }
const CastorTopology * theTopology

Member Function Documentation

unsigned int CastorGeometry::alignmentTransformIndexGlobal ( const DetId id)
static

Definition at line 66 of file CastorGeometry.cc.

References DetId::Calo.

67 {
68  return (unsigned int)DetId::Calo - 1 ;
69 }
unsigned int CastorGeometry::alignmentTransformIndexLocal ( const DetId id)
static

Definition at line 56 of file CastorGeometry.cc.

References CaloGenericDetId::isCastor().

57 {
58  const CaloGenericDetId gid ( id ) ;
59 
60  assert( gid.isCastor() ) ;
61 
62  return 0 ;
63 }
const CaloCellGeometry * CastorGeometry::cellGeomPtr ( uint32_t  index) const
protectedvirtual

Implements CaloSubdetectorGeometry.

Definition at line 98 of file CastorGeometry.cc.

References m_cellVec, and CaloCellGeometry::param().

99 {
100  const CaloCellGeometry* cell ( &m_cellVec[ index ] ) ;
101  return ( m_cellVec.size() < index ||
102  0 == cell->param() ? 0 : cell ) ;
103 }
static std::string CastorGeometry::dbString ( )
inlinestatic

Definition at line 36 of file CastorGeometry.h.

36 { return "PCastorRcd" ; }
DetId CastorGeometry::getClosestCell ( const GlobalPoint r) const
virtual

Reimplemented from CaloSubdetectorGeometry.

Definition at line 35 of file CastorGeometry.cc.

References CaloSubdetectorGeometry::getGeometry(), CaloSubdetectorGeometry::getValidDetIds(), and CaloCellGeometry::inside().

36 {
37  DetId returnId ( 0 ) ;
38  const std::vector<DetId>& detIds ( getValidDetIds() ) ;
39  for( std::vector<DetId>::const_iterator it ( detIds.begin() ) ;
40  it != detIds.end(); ++it )
41  {
42  const CaloCellGeometry* cell ( getGeometry( *it ) ) ;
43  if( 0 != cell &&
44  cell->inside( r ) )
45  {
46  returnId = *it ;
47  break ;
48  }
49  }
50  return returnId ;
51 }
virtual const std::vector< DetId > & getValidDetIds(DetId::Detector det=DetId::Detector(0), int subdet=0) const
Get a list of valid detector ids (for the given subdetector)
virtual const CaloCellGeometry * getGeometry(const DetId &id) const
Get the cell geometry of a given detector id. Should return false if not found.
Definition: DetId.h:20
void CastorGeometry::localCorners ( Pt3DVec lc,
const CCGFloat pv,
unsigned int  i,
Pt3D ref 
)
static

Definition at line 72 of file CastorGeometry.cc.

References IdealCastorTrapezoid::localCorners().

76 {
77  IdealCastorTrapezoid::localCorners( lc, pv, ref ) ;
78 }
static void localCorners(Pt3DVec &vec, const CCGFloat *pv, Pt3D &ref)
void CastorGeometry::newCell ( const GlobalPoint f1,
const GlobalPoint f2,
const GlobalPoint f3,
const CCGFloat parm,
const DetId detId 
)
virtual

Implements CaloSubdetectorGeometry.

Definition at line 81 of file CastorGeometry.cc.

References CaloSubdetectorGeometry::cornersMgr(), CaloGenericDetId::denseIndex(), CaloGenericDetId::isCastor(), m_cellVec, and CaloSubdetectorGeometry::m_validIds.

86 {
87  const CaloGenericDetId cgid ( detId ) ;
88 
89  assert( cgid.isCastor() ) ;
90 
91  const unsigned int di ( cgid.denseIndex() ) ;
92 
93  m_cellVec[ di ] = IdealCastorTrapezoid( f1, cornersMgr(), parm ) ;
94  m_validIds.push_back( detId ) ;
95 }
std::vector< DetId > m_validIds
CaloCellGeometry::CornersMgr * cornersMgr()
static unsigned int CastorGeometry::numberOfAlignments ( )
inlinestatic

Definition at line 52 of file CastorGeometry.h.

Referenced by FakeCaloAlignmentEP::produceCastorAli(), and TestCaloAlignmentEP::produceCastorAli().

52 { return 1 ; }
virtual unsigned int CastorGeometry::numberOfParametersPerShape ( ) const
inlinevirtual
virtual unsigned int CastorGeometry::numberOfShapes ( ) const
inlinevirtual

Reimplemented from CaloSubdetectorGeometry.

Definition at line 40 of file CastorGeometry.h.

References k_NumberOfShapes.

virtual unsigned int CastorGeometry::numberOfTransformParms ( ) const
inlinevirtual

Reimplemented from CaloSubdetectorGeometry.

Definition at line 38 of file CastorGeometry.h.

38 { return 3 ; }
static std::string CastorGeometry::producerTag ( )
inlinestatic

Member Data Documentation

DetId::Detector CastorGeometry::lastReqDet_
mutableprivate

Definition at line 77 of file CastorGeometry.h.

int CastorGeometry::lastReqSubdet_
mutableprivate

Definition at line 78 of file CastorGeometry.h.

CellVec CastorGeometry::m_cellVec
private

Definition at line 81 of file CastorGeometry.h.

Referenced by cellGeomPtr(), and newCell().

bool CastorGeometry::m_ownsTopology
private

Definition at line 79 of file CastorGeometry.h.

Referenced by ~CastorGeometry().

const CastorTopology* CastorGeometry::theTopology
private

Definition at line 76 of file CastorGeometry.h.

Referenced by ~CastorGeometry().