CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCReadOutMappingWithFastSearch.h
Go to the documentation of this file.
1 #ifndef RPCReadOutMappingWithFastSearch_H
2 #define RPCReadOutMappingWithFastSearch_H
3 
5 #include <string>
6 #include <map>
7 
9 public:
12 
14  void init(const RPCReadOutMapping * arm);
15 
16  virtual const LinkBoardSpec* location (const LinkBoardElectronicIndex & ele) const;
17 
19  const LinkBoardSpec& location, const LinkBoardPackedStrip & lbstrip) const;
20 
21 private:
22  std::string theVersion;
24 
25  struct lessMap {
26  bool operator()(const LinkBoardElectronicIndex & lb1, const LinkBoardElectronicIndex & lb2) const;
27  };
28 
29  typedef std::map<LinkBoardElectronicIndex, const LinkBoardSpec*, lessMap> LBMap;
31 };
32 #endif
virtual const LinkBoardSpec * location(const LinkBoardElectronicIndex &ele) const
conversion between electronic and detector indexing
std::pair< uint32_t, int > StripInDetUnit
first member is DetUnit ID, second strip in DetUnit frame
void init(const RPCReadOutMapping *arm)
takes ownership of map
bool operator()(const LinkBoardElectronicIndex &lb1, const LinkBoardElectronicIndex &lb2) const
virtual RPCReadOutMapping::StripInDetUnit detUnitFrame(const LinkBoardSpec &location, const LinkBoardPackedStrip &lbstrip) const
convert strip location as in raw data (LB and LBchannel) to detUnit frame
std::map< LinkBoardElectronicIndex, const LinkBoardSpec *, lessMap > LBMap