DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
BitField64.h
Go to the documentation of this file.
1 //==========================================================================
2 // AIDA Detector description implementation
3 //--------------------------------------------------------------------------
4 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
5 // All rights reserved.
6 //
7 // For the licensing terms see $DD4hepINSTALL/LICENSE.
8 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
9 //
10 //==========================================================================
11 
12 #ifndef DDSEGMENTATION_BITFIELD64_H
13 #define DDSEGMENTATION_BITFIELD64_H 1
14 
15 #include <ostream>
16 
17 #include <string>
18 
20 
22 namespace dd4hep {
23 
25  namespace DDSegmentation {
26 
28 
34 
37 
38  public :
39 
40  BitFieldValue() = delete ;
41 
43  BitFieldValue( CellID& bitfield, const BitFieldElement& bv ) :
44  _value( bitfield ), _bv( bv) {}
45 
48  FieldID value() const { return _bv.value( _value ) ; }
49 
51  FieldID value(CellID id) const { return _bv.value( id ) ; }
52 
55  _bv.set( _value, in ) ;
56  return *this ;
57  }
58 
62  operator FieldID() const { return value() ; }
63 
65  const std::string& name() const { return _bv.name() ; }
66 
68  unsigned offset() const { return _bv.offset() ; }
69 
71  unsigned width() const { return _bv.width() ; }
72 
74  bool isSigned() const { return _bv.isSigned() ; }
75 
77  CellID mask() const { return _bv.mask() ; }
78 
80  int minValue() const { return _bv.minValue(); }
81 
83  int maxValue() const { return _bv.maxValue(); }
84 
85  } ;
86 
87 
89 
107  class BitField64{
108 
109  friend std::ostream& operator<<(std::ostream& os, const BitField64& b) ;
110 
111  public :
112 
113  virtual ~BitField64() {
114  if( _owner)
115  delete _coder ;
116  };
117 
119  BitField64() = delete ;
120 
135  BitField64( const std::string& initString ){
136  _coder = new BitFieldCoder( initString ) ;
137  }
138 
140  BitField64( const BitFieldCoder* coder ) : _owner(false), _coder( coder ) {
141  }
142 
143 
146  CellID getValue() const { return _value ; }
147 
150  void setValue(CellID value ) { _value = ( _coder->mask() & value ) ; }
151 
154  void setValue(unsigned low_Word, unsigned high_Word ) {
155  setValue( ( low_Word & 0xffffffffULL ) | ( ( high_Word & 0xffffffffULL ) << 32 ) ) ;
156  }
157 
159  BitField64& operator()(CellID val) { setValue( val ) ; return *this ; }
160 
163  void reset() { _value = 0 ; }
164 
167  BitFieldValue operator[](size_t idx) {
168  return BitFieldValue( _value, _coder->operator[]( idx ) ) ;
169  }
170 
171  // /** Const acces to field through index
172  // */
173  // const BitFieldValue& operator[](size_t idx) const {
174 
175  // return BitFieldValue( _value, _coder->operator[]( idx ) ) ;
176  // }
177 
180  unsigned highestBit() const { return _coder->highestBit() ; }
181 
183  size_t size() const { return _coder->size() ; }
184 
187  size_t index( const std::string& name) const { return _coder->index( name ) ; }
188 
191  BitFieldValue operator[](const std::string& name) {
192  return BitFieldValue( _value, _coder->operator[]( name ) ) ;
193  }
194  // /** Const Access to field through name .
195  // */
196  // const BitFieldValue& operator[](const std::string& name) const {
197 
198  // return BitFieldValue( _value, _coder->operator[]( name ) );
199  // }
200 
201 
204  unsigned lowWord() const { return unsigned( _value & 0xffffFFFFUL ) ; }
205 
208  unsigned highWord() const { return unsigned(_value >> 32) ; }
209 
210 
213  std::string fieldDescription() const { return _coder->fieldDescription() ; }
214 
217  std::string valueString() const ;
218 
219  // const std::vector<BitFieldValue*>& fields() const {
220  // return _coder->fields() ;
221  // }
222 
223  protected:
224 
225  // -------------- data members:--------------
226  bool _owner{true} ;
229 
230  };
231 
232 
235  std::ostream& operator<<(std::ostream& os, const BitField64& b) ;
236 
237 
238 
239  } // end namespace
240 
241  using DDSegmentation::BitField64 ;
242 } // end namespace
243 
244 #endif
245 
246 
247 
248 
dd4hep::DDSegmentation::BitField64::operator[]
BitFieldValue operator[](size_t idx)
Definition: BitField64.h:167
dd4hep::DDSegmentation::BitFieldElement::offset
unsigned offset() const
Definition: BitFieldCoder.h:63
dd4hep::DDSegmentation::BitFieldValue::value
FieldID value(CellID id) const
Calculate Field value given an external 64 bit bitmap value.
Definition: BitField64.h:51
dd4hep::DDSegmentation::BitFieldElement
Helper class for BitFieldCoder that corresponds to one field value.
Definition: BitFieldCoder.h:31
dd4hep::DDSegmentation::BitField64::highestBit
unsigned highestBit() const
Definition: BitField64.h:180
dd4hep::DDSegmentation::BitField64::~BitField64
virtual ~BitField64()
Definition: BitField64.h:113
dd4hep::DDSegmentation::BitFieldValue::value
FieldID value() const
Definition: BitField64.h:48
dd4hep::DDSegmentation::BitField64::_value
CellID _value
Definition: BitField64.h:227
dd4hep::DDSegmentation::BitFieldValue::minValue
int minValue() const
Definition: BitField64.h:80
dd4hep::DDSegmentation::BitFieldElement::isSigned
bool isSigned() const
Definition: BitFieldCoder.h:69
dd4hep::DDSegmentation::BitFieldValue
Lightweight helper class for BitField64 that corresponds to one field value.
Definition: BitField64.h:33
dd4hep::DDSegmentation::BitFieldValue::isSigned
bool isSigned() const
Definition: BitField64.h:74
dd4hep::DDSegmentation::BitFieldElement::maxValue
int maxValue() const
Definition: BitFieldCoder.h:78
dd4hep::DDSegmentation::BitFieldCoder
Helper class for decoding and encoding a bit field of 64bits for convenient declaration.
Definition: BitFieldCoder.h:113
dd4hep::DDSegmentation::BitField64::operator()
BitField64 & operator()(CellID val)
Definition: BitField64.h:159
dd4hep::DDSegmentation::BitField64::operator<<
friend std::ostream & operator<<(std::ostream &os, const BitField64 &b)
Definition: BitField64.cpp:38
dd4hep::DDSegmentation::BitField64::index
size_t index(const std::string &name) const
Definition: BitField64.h:187
dd4hep::DDSegmentation::BitField64
A bit field of 64bits that allows convenient declaration.
Definition: BitField64.h:107
dd4hep::DDSegmentation::BitField64::reset
void reset()
Definition: BitField64.h:163
dd4hep::DDSegmentation::BitField64::fieldDescription
std::string fieldDescription() const
Definition: BitField64.h:213
dd4hep::DDSegmentation::BitFieldElement::value
FieldID value(CellID bitfield) const
calculate this field's value given an external 64 bit bitmap
Definition: BitFieldCoder.cpp:56
dd4hep::DDSegmentation::BitField64::setValue
void setValue(unsigned low_Word, unsigned high_Word)
Definition: BitField64.h:154
dd4hep::DDSegmentation::BitField64::operator[]
BitFieldValue operator[](const std::string &name)
Definition: BitField64.h:191
dd4hep::DDSegmentation::BitFieldValue::mask
CellID mask() const
Definition: BitField64.h:77
dd4hep::DDSegmentation::BitFieldCoder::highestBit
unsigned highestBit() const
Definition: BitFieldCoder.cpp:97
dd4hep::DDSegmentation::BitField64::valueString
std::string valueString() const
Definition: BitField64.cpp:23
dd4hep::DDSegmentation::FieldID
int64_t FieldID
Definition: BitFieldCoder.h:24
dd4hep::DDSegmentation::BitField64::setValue
void setValue(CellID value)
Definition: BitField64.h:150
dd4hep::DDSegmentation::BitFieldElement::set
void set(CellID &bitfield, FieldID value) const
Definition: BitFieldCoder.cpp:68
dd4hep::DDSegmentation::BitFieldValue::maxValue
int maxValue() const
Definition: BitField64.h:83
dd4hep::DDSegmentation::BitFieldElement::name
const std::string & name() const
Definition: BitFieldCoder.h:60
dd4hep::DDSegmentation::BitFieldValue::BitFieldValue
BitFieldValue(CellID &bitfield, const BitFieldElement &bv)
only c'tor with reference to bitfield and BitFieldElement
Definition: BitField64.h:43
dd4hep::DDSegmentation::BitFieldValue::operator=
BitFieldValue & operator=(FieldID in)
Definition: BitField64.h:54
dd4hep::DDSegmentation::BitFieldValue::width
unsigned width() const
Definition: BitField64.h:71
dd4hep::DDSegmentation::BitFieldElement::width
unsigned width() const
Definition: BitFieldCoder.h:66
dd4hep::DDSegmentation::BitFieldValue::BitFieldValue
BitFieldValue()=delete
dd4hep::DDSegmentation::BitField64::BitField64
BitField64(const std::string &initString)
Definition: BitField64.h:135
dd4hep::DDSegmentation::BitFieldValue::_bv
const BitFieldElement & _bv
Definition: BitField64.h:36
BitFieldCoder.h
dd4hep::DDSegmentation::BitFieldElement::mask
CellID mask() const
Definition: BitFieldCoder.h:72
dd4hep::DDSegmentation::BitFieldValue::offset
unsigned offset() const
Definition: BitField64.h:68
dd4hep::DDSegmentation::CellID
uint64_t CellID
Definition: BitFieldCoder.h:25
dd4hep::DDSegmentation::BitField64::_owner
bool _owner
Definition: BitField64.h:226
dd4hep::DDSegmentation::BitFieldCoder::index
size_t index(const std::string &name) const
Definition: BitFieldCoder.cpp:85
dd4hep::DDSegmentation::BitField64::getValue
CellID getValue() const
Definition: BitField64.h:146
dd4hep::DDSegmentation::BitField64::_coder
const BitFieldCoder * _coder
Definition: BitField64.h:228
dd4hep::DDSegmentation::BitField64::highWord
unsigned highWord() const
Definition: BitField64.h:208
dd4hep::DDSegmentation::BitField64::size
size_t size() const
Definition: BitField64.h:183
dd4hep::DDSegmentation::BitFieldElement::minValue
int minValue() const
Definition: BitFieldCoder.h:75
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::DDSegmentation::BitFieldCoder::fieldDescription
std::string fieldDescription() const
Definition: BitFieldCoder.cpp:124
dd4hep::DDSegmentation::BitFieldValue::name
const std::string & name() const
Definition: BitField64.h:65
dd4hep::DDSegmentation::BitFieldCoder::size
size_t size() const
Definition: BitFieldCoder.h:191
dd4hep::DDSegmentation::BitField64::BitField64
BitField64()=delete
dd4hep::DDSegmentation::BitFieldValue::_value
CellID & _value
Definition: BitField64.h:35
dd4hep::DDSegmentation::BitFieldCoder::mask
CellID mask() const
Definition: BitFieldCoder.h:222
dd4hep::DDSegmentation::BitField64::lowWord
unsigned lowWord() const
Definition: BitField64.h:204
dd4hep::DDSegmentation::operator<<
std::ostream & operator<<(std::ostream &os, const BitField64 &b)
Definition: BitField64.cpp:38
dd4hep::DDSegmentation::BitField64::BitField64
BitField64(const BitFieldCoder *coder)
Initialize from existing BitFieldCoder.
Definition: BitField64.h:140