CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripRing.h
Go to the documentation of this file.
1 // Last commit: $Id: SiStripRing.h,v 1.3 2007/03/28 09:11:51 bainbrid Exp $
2 
3 #ifndef CalibFormats_SiStripObjects_SiStripRing_H
4 #define CalibFormats_SiStripObjects_SiStripRing_H
5 
8 #include <boost/cstdint.hpp>
9 #include <vector>
10 
15 class SiStripRing {
16 
17  public:
18 
21 
24 
26  inline const std::vector<SiStripCcu>& ccus() const;
27 
29  inline const uint16_t& fecRing() const;
30 
32  void addDevices( const FedChannelConnection& conn );
33 
34  private:
35 
38 
40  uint16_t fecRing_;
41 
43  std::vector<SiStripCcu> ccus_;
44 
45 };
46 
47 // ---------- inline methods ----------
48 
49 const std::vector<SiStripCcu>& SiStripRing::ccus() const { return ccus_; }
50 const uint16_t& SiStripRing::fecRing() const { return fecRing_; }
51 
52 #endif // CalibTracker_SiStripObjects_SiStripRing_H
53 
54 
std::vector< SiStripCcu > ccus_
Definition: SiStripRing.h:43
const std::vector< SiStripCcu > & ccus() const
Definition: SiStripRing.h:49
uint16_t fecRing_
Definition: SiStripRing.h:40
Class containning control, module, detector and connection information, at the level of a FED channel...
void addDevices(const FedChannelConnection &conn)
Definition: SiStripRing.cc:18
tuple conn
Definition: results_mgr.py:53
const uint16_t & fecRing() const
Definition: SiStripRing.h:50