#include <TrackingTools/TrackAssociator/interface/HODetIdAssociator.h>
Public Member Functions | |
HODetIdAssociator (const edm::ParameterSet &pSet) | |
HODetIdAssociator () | |
Protected Member Functions | |
virtual std::set< DetId > | getASetOfValidDetIds () const |
Definition at line 24 of file HODetIdAssociator.h.
HODetIdAssociator::HODetIdAssociator | ( | ) | [inline] |
HODetIdAssociator::HODetIdAssociator | ( | const edm::ParameterSet & | pSet | ) | [inline] |
virtual std::set<DetId> HODetIdAssociator::getASetOfValidDetIds | ( | ) | const [inline, protected, virtual] |
Reimplemented from CaloDetIdAssociator.
Definition at line 32 of file HODetIdAssociator.h.
References CaloDetIdAssociator::geometry_, CaloGeometry::getValidDetIds(), DetId::Hcal, and it.
00032 { 00033 std::set<DetId> setOfValidIds; 00034 std::vector<DetId> vectOfValidIds = geometry_->getValidDetIds(DetId::Hcal, 3);//HO 00035 for(std::vector<DetId>::const_iterator it = vectOfValidIds.begin(); it != vectOfValidIds.end(); ++it) 00036 setOfValidIds.insert(*it); 00037 return setOfValidIds; 00038 };