CMS 3D CMS Logo

Public Member Functions | Private Types | Private Member Functions | Private Attributes | Static Private Attributes

CaloGeometry Class Reference

#include <CaloGeometry.h>

List of all members.

Public Member Functions

 CaloGeometry ()
const CaloCellGeometrygetGeometry (const DetId &id) const
 Get the cell geometry of a given detector id.
const GlobalPointgetPosition (const DetId &id) const
 Get the position of a given detector id.
const CaloSubdetectorGeometrygetSubdetectorGeometry (DetId::Detector det, int subdet) const
 access the subdetector geometry for the given subdetector directly
const CaloSubdetectorGeometrygetSubdetectorGeometry (const DetId &id) const
 access the subdetector geometry for the given subdetector directly
std::vector< DetIdgetValidDetIds () const
 Get the list of all valid detector ids.
const std::vector< DetId > & getValidDetIds (DetId::Detector det, int subdet) const
 Get the list of valid detector ids for the given subdetector.
bool present (const DetId &id) const
 is this detid present in the geometry?
void setSubdetGeometry (DetId::Detector det, int subdet, const CaloSubdetectorGeometry *geom)
 Register a subdetector geometry.

Private Types

enum  {
  kMaxDet = 5, kMinDet = 3, kNDets = kMaxDet - kMinDet + 1, kMaxSub = 4,
  kLength = kNDets*kMaxSub
}

Private Member Functions

unsigned int makeIndex (DetId::Detector det, int subdet, bool &ok) const

Private Attributes

std::vector< const
CaloSubdetectorGeometry * > 
m_geos

Static Private Attributes

static const std::vector< DetIdk_emptyVec

Detailed Description

Interface class to the geometry information for all calorimetry subdetectors.

Date:
2010/04/27 15:00:03
Revision:
1.7
Author:
J. Mans and P. Meridiani

Definition at line 21 of file CaloGeometry.h.


Member Enumeration Documentation

anonymous enum [private]
Enumerator:
kMaxDet 
kMinDet 
kNDets 
kMaxSub 
kLength 

Definition at line 67 of file CaloGeometry.h.

           { kMaxDet = 5 ,
             kMinDet = 3 ,
             kNDets  = kMaxDet - kMinDet + 1 ,
             kMaxSub = 4 ,
             kLength = kNDets*kMaxSub } ;

Constructor & Destructor Documentation

CaloGeometry::CaloGeometry ( )

Definition at line 7 of file CaloGeometry.cc.

                           :
   m_geos ( kLength, 0 )
{
}

Member Function Documentation

const CaloCellGeometry * CaloGeometry::getGeometry ( const DetId id) const
const GlobalPoint & CaloGeometry::getPosition ( const DetId id) const
const CaloSubdetectorGeometry * CaloGeometry::getSubdetectorGeometry ( DetId::Detector  det,
int  subdet 
) const

access the subdetector geometry for the given subdetector directly

Definition at line 54 of file CaloGeometry.cc.

References getHLTprescales::index, m_geos, makeIndex(), and convertSQLiteXML::ok.

{
   bool ok ;

   const unsigned int index ( makeIndex( det,
                                         subdet,
                                         ok             ) ) ;
   return ( ok ? m_geos[ index ] : 0 ) ;
}
const CaloSubdetectorGeometry * CaloGeometry::getSubdetectorGeometry ( const DetId id) const

access the subdetector geometry for the given subdetector directly

Definition at line 43 of file CaloGeometry.cc.

References getHLTprescales::index, m_geos, makeIndex(), and convertSQLiteXML::ok.

Referenced by IsolatedTracksCone::analyze(), EcalHaloAlgo::Calculate(), spr::chargeIsolationEcal(), EcalClusterTools::covariances(), HcalRecHitsMaker::createVectorOfSubdetectorCells(), egammaisolation::EgammaRecHitExtractor::deposit(), InvRingCalib::EERingDef(), EgammaRecHitIsolation::EgammaRecHitIsolation(), HCALRecHitAnalyzer::FillGeometry(), spr::findDetIdECAL(), spr::findDetIdHCAL(), BetaCalculatorECAL::getDetailedTrackLengthInXtals(), HCaloDetIdAssociator::getDetIdPoints(), CaloDetIdAssociator::getDetIdPoints(), EcalClusterTools::getEnergyDepTopology(), getGeometry(), HoECalculator::getHoE(), getPosition(), CaloDetIdAssociator::getPosition(), HCaloDetIdAssociator::getPosition(), EcalRingCalibrationTools::initializeFromGeometry(), CaloDetIdAssociator::insideElement(), HCaloDetIdAssociator::insideElement(), spr::matrixECALIds(), EcalClusterTools::meanClusterPosition(), PhysicsTowerOrganizer::PhysicsTowerOrganizer(), present(), CastorEventDisplay::processEvent(), HybridClusterProducer::produce(), EgammaHLTHybridClusterProducer::produce(), spr::propagateCALO(), CaloConeSelector::select(), CaloDualConeSelector::select(), CaloTowersCreationAlgo::setGeometry(), EcalGeomPhiSymHelper::setup(), Calorimeter::setupGeometry(), CaloHitResponse::timeOfFlight(), and EcalDigiProducer::updateGeometry().

{
   bool ok ;

   const unsigned int index ( makeIndex( id.det(),
                                         id.subdetId(),
                                         ok             ) ) ;
   return ( ok ? m_geos[ index ] : 0 ) ;
}
std::vector< DetId > CaloGeometry::getValidDetIds ( ) const
const std::vector< DetId > & CaloGeometry::getValidDetIds ( DetId::Detector  det,
int  subdet 
) const

Get the list of valid detector ids for the given subdetector.

Definition at line 115 of file CaloGeometry.cc.

References getValidDetIds(), getHLTprescales::index, k_emptyVec, m_geos, makeIndex(), and convertSQLiteXML::ok.

{
   bool ok ;

   const unsigned int index ( makeIndex( det,
                                         subdet,
                                         ok             ) ) ;

   return ( ok && ( 0 != m_geos[ index ] ) ?
            m_geos[ index ]->getValidDetIds( det, subdet ) :
            k_emptyVec ) ;
}
unsigned int CaloGeometry::makeIndex ( DetId::Detector  det,
int  subdet,
bool &  ok 
) const [private]

Definition at line 13 of file CaloGeometry.cc.

References kMaxDet, kMaxSub, and kMinDet.

Referenced by getSubdetectorGeometry(), getValidDetIds(), and setSubdetGeometry().

{
   const unsigned int idet ( det ) ;

   ok = ( kMinDet <= idet   &&
          kMaxDet >= idet   &&
          0       <  subdet &&
          kMaxSub >= subdet    ) ;

   return ( ( det - kMinDet )*kMaxSub + subdet - 1 ) ;
}
bool CaloGeometry::present ( const DetId id) const

is this detid present in the geometry?

Definition at line 84 of file CaloGeometry.cc.

References relativeConstraints::geom, getSubdetectorGeometry(), and CaloSubdetectorGeometry::present().

{
   const CaloSubdetectorGeometry* geom ( getSubdetectorGeometry( id ) ) ;
   return ( 0 == geom ? false : geom->present( id ) ) ;
}
void CaloGeometry::setSubdetGeometry ( DetId::Detector  det,
int  subdet,
const CaloSubdetectorGeometry geom 
)

Register a subdetector geometry.

Definition at line 28 of file CaloGeometry.cc.

References relativeConstraints::geom, getHLTprescales::index, m_geos, makeIndex(), and convertSQLiteXML::ok.

{
   bool ok ;
   const unsigned int index = makeIndex( det, subdet, ok ) ;
   if( ok ) m_geos[index] = geom ;

//   std::cout<<"Detector="<<(int)det<<", subset="<<subdet<<", index="<<index
//          <<", size="<<m_geos.size()<<std::endl;

   assert( ok ) ;
}

Member Data Documentation

const std::vector< DetId > CaloGeometry::k_emptyVec [static, private]

Definition at line 59 of file CaloGeometry.h.

Referenced by getValidDetIds().

std::vector< const CaloSubdetectorGeometry* > CaloGeometry::m_geos [private]

Definition at line 61 of file CaloGeometry.h.

Referenced by getSubdetectorGeometry(), getValidDetIds(), and setSubdetGeometry().