ATLAS Offline Software
Public Types | Public Member Functions | Private Types | Private Attributes | List of all members
TRTCond::StrawStatusContainerTemplate< LEVEL > Class Template Reference

#include <StrawStatusContainer.h>

Inheritance diagram for TRTCond::StrawStatusContainerTemplate< LEVEL >:
Collaboration diagram for TRTCond::StrawStatusContainerTemplate< LEVEL >:

Public Types

typedef StrawStatus value_type
 Type of atomic element. More...
 
typedef const StrawStatus const_value_type
 const Type of atomic element. More...
 
typedef DeadStrawTrait trait_type
 Type of trait. More...
 
typedef std::vector< std::pair< ExpandedIdentifier, const StrawStatus * > > FlatContainer
 fill vector with all entries in the container. needed to dump to Peter's flat file format More...
 

Public Member Functions

 StrawStatusContainerTemplate ()
 constructor More...
 
virtual ~StrawStatusContainerTemplate ()
 destructor More...
 
void setStatus (const ExpandedIdentifier &id, unsigned int status)
 set status More...
 
void set (const ExpandedIdentifier &id, const StrawStatus &t)
 set a value. More...
 
void set (const StrawStatus &t)
 set the default value More...
 
const StrawStatusget (const ExpandedIdentifier &id) const
 get a value. More...
 
const StrawStatusget (const ExpandedIdentifier &id, size_t &resolvelevel) const
 
const StrawStatusget () const
 get the default value More...
 
void clear ()
 clear entire container More...
 
void clear (const ExpandedIdentifier &id)
 clear only entries specified More...
 
const DaughterContainerdaughters () const
 return the vector of daughters More...
 
size_t numObjects () const
 return the total number of valid calibration objects More...
 
bool operator== (const NestedContainerBase &rhs) const
 equality operator, used for compressing More...
 
bool operator== (const StrawStatus &rhs) const
 another equality operator, used for compressing More...
 
size_t footprint () const
 return the memory allocated by the container and its daughters More...
 
void crunch ()
 reduce the footprint as much as possible by removing the extra space allocated by the vectors More...
 
void printindent () const
 some IO for debugging More...
 
void print () const
 
void getall (FlatContainer &entries) const
 

Private Types

typedef std::vector< NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > > DaughterContainer
 typedef of container More...
 

Private Attributes

DaughterContainer m_daughters
 Container of Daughters. More...
 
StrawStatus m_default
 Type of atomic element. More...
 

Detailed Description

template<int LEVEL>
class TRTCond::StrawStatusContainerTemplate< LEVEL >

Definition at line 43 of file StrawStatusContainer.h.

Member Typedef Documentation

◆ const_value_type

const Type of atomic element.

Definition at line 161 of file NestedContainer.h.

◆ DaughterContainer

typedef std::vector<NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > > TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::DaughterContainer
privateinherited

typedef of container

Definition at line 154 of file NestedContainer.h.

◆ FlatContainer

typedef std::vector< std::pair<ExpandedIdentifier, const StrawStatus *> > TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::FlatContainer
inherited

fill vector with all entries in the container. needed to dump to Peter's flat file format

Definition at line 346 of file NestedContainer.h.

◆ trait_type

Type of trait.

Definition at line 162 of file NestedContainer.h.

◆ value_type

Type of atomic element.

Definition at line 160 of file NestedContainer.h.

Constructor & Destructor Documentation

◆ StrawStatusContainerTemplate()

template<int LEVEL>
TRTCond::StrawStatusContainerTemplate< LEVEL >::StrawStatusContainerTemplate ( )
inline

constructor

Definition at line 49 of file StrawStatusContainer.h.

49 {}

◆ ~StrawStatusContainerTemplate()

template<int LEVEL>
virtual TRTCond::StrawStatusContainerTemplate< LEVEL >::~StrawStatusContainerTemplate ( )
inlinevirtual

destructor

Definition at line 52 of file StrawStatusContainer.h.

52 {}

Member Function Documentation

◆ clear() [1/2]

void TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::clear ( )
inlineinherited

clear entire container

Definition at line 238 of file NestedContainer.h.

238  {
239  for( typename DaughterContainer::iterator it = m_daughters.begin() ; it != m_daughters.end(); ++it )
241  m_daughters.clear() ;
242  Trait::erase(m_default) ;
243  }

◆ clear() [2/2]

void TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::clear ( const ExpandedIdentifier id)
inlineinherited

clear only entries specified

Definition at line 246 of file NestedContainer.h.

246  {
247  if( NestingLevel == id.level() ) clear() ;
248  else {
249  unsigned int thisindex = id.index(NestingLevel+1) ;
250  if(thisindex<m_daughters.size())
252  }
253  }

◆ crunch()

void TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::crunch ( )
inlineinherited

reduce the footprint as much as possible by removing the extra space allocated by the vectors

Definition at line 292 of file NestedContainer.h.

292  {
293  // first the daughters
294  for( typename DaughterContainer::iterator it = m_daughters.begin() ; it != m_daughters.end(); ++it )
295  NestedContainerDaughterAccessor<Daughter,T,Trait>::crunch(*it) ;
296  // now use, if anything is there
297  if( m_daughters.size()>0 ) {
298  // find the first daughter that is valid
299  size_t firstvaliddaughter(0);
300  bool allequal(true) ;
301  for(size_t idau=0; idau<m_daughters.size() && allequal; ++idau) {
302  allequal = NestedContainerDaughterAccessor<Daughter,T,Trait>::empty(m_daughters[idau]) ;
303  if( allequal ) {
304  bool isvalid = Trait::isvalid( NestedContainerDaughterAccessor<Daughter,T,Trait>::get(m_daughters[idau])) ;
305  if( isvalid ) {
306  if( firstvaliddaughter==0 ) firstvaliddaughter = idau ;
307  } else {
308  allequal = NestedContainerDaughterAccessor<Daughter,T,Trait>::isequal(m_daughters[idau],m_daughters[firstvaliddaughter]) ;
309  }
310  }
311  }
312  if(allequal) {
313  // set the default value to the value form the first daughter
314  T defaultvalue(Trait::initialvalue()) ;
315  if( firstvaliddaughter < m_daughters.size() )
317  clear() ; // this clears pointers in the daughters. would rather replace that with destructors.
320  } else if(m_daughters.size()<m_daughters.capacity()) {
321  DaughterContainer newdaughters(0) ;
322  newdaughters.reserve( m_daughters.size() ) ;
323  newdaughters.insert( newdaughters.end(), m_daughters.begin(), m_daughters.end() ) ;
324  newdaughters.swap(m_daughters) ;
325  }
326  }
327  }

◆ daughters()

const DaughterContainer& TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::daughters ( ) const
inlineinherited

return the vector of daughters

Definition at line 256 of file NestedContainer.h.

256 { return m_daughters ; }

◆ footprint()

size_t TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::footprint ( ) const
inlineinherited

return the memory allocated by the container and its daughters

Definition at line 282 of file NestedContainer.h.

282  {
283  size_t total = Trait::footprint(m_default) + (m_daughters.capacity()-m_daughters.size())*sizeof(Daughter) ;
284  for( typename DaughterContainer::const_iterator it = m_daughters.begin() ; it != m_daughters.end(); ++it )
285  total += NestedContainerDaughterAccessor<Daughter,T,Trait>::footprint(*it) ;
286  return total ;
287  }

◆ get() [1/3]

const StrawStatus & TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::get ( ) const
inlineinherited

get the default value

Definition at line 232 of file NestedContainer.h.

232 { return m_default ; }

◆ get() [2/3]

const StrawStatus & TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::get ( const ExpandedIdentifier id) const
inlineinherited

get a value.

return the default value if no valid entry for id exists.

Definition at line 205 of file NestedContainer.h.

205  {
206  if( NestingLevel < id.level() ) {
207  unsigned int thisindex = id.index(NestingLevel+1) ;
208  if(thisindex<m_daughters.size()) {
210  // only return this value if it is valid. otherwise, return the default.
211  if( Trait::isvalid(rc) ) return rc ;
212  }
213  }
214  return m_default ;
215  }

◆ get() [3/3]

const StrawStatus & TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::get ( const ExpandedIdentifier id,
size_t &  resolvelevel 
) const
inlineinherited

Definition at line 217 of file NestedContainer.h.

218  {
219  if( NestingLevel < id.level() ) {
220  unsigned int thisindex = id.index(NestingLevel+1) ;
221  if(thisindex<m_daughters.size()) {
222  const T& rc = NestedContainerDaughterAccessor<Daughter,T,Trait>::get(m_daughters[thisindex],id,resolvelevel) ;
223  if( Trait::isvalid(rc) ) return rc ;
224  }
225  }
226  resolvelevel = NestingLevel ;
227  return m_default ;
228  }

◆ getall()

void TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::getall ( FlatContainer entries) const
inlineinherited

Definition at line 347 of file NestedContainer.h.

347  {
348  // add the daughters
349  for(unsigned int idau = 0; idau<m_daughters.size(); ++idau) {
350  FlatContainer dauentries ;
351  // first get them
352  NestedContainerDaughterAccessor<Daughter,T,Trait>::getall(m_daughters[idau], dauentries) ;
353  // now update the identifiers to have the dauhgter index set correctly
354  for(unsigned int j=0; j< dauentries.size(); ++j )
355  dauentries[j].first.index(NestingLevel+1) = idau ;
356  // and append
357  entries.insert(entries.end(),dauentries.begin(),dauentries.end()) ;
358  }
359  // add the default value
360  if( Trait::isvalid(m_default) ) {
361  ExpandedIdentifier id(0,0,0,0,0,NestingLevel) ;
362  entries.push_back( std::pair<ExpandedIdentifier, const T*>(id,&m_default)) ;
363  }
364  }

◆ numObjects()

size_t TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::numObjects ( ) const
inlineinherited

return the total number of valid calibration objects

Definition at line 260 of file NestedContainer.h.

260  {
261  size_t rc(0) ;
262  assert( std::distance(m_daughters.begin(),m_daughters.end())==(int)m_daughters.size()) ;
263  assert( m_daughters.size() < 1000 ) ;
264  for( typename DaughterContainer::const_iterator it = m_daughters.begin() ; it != m_daughters.end(); ++it )
265  rc += NestedContainerDaughterAccessor<Daughter,T,Trait>::numObjects(*it) ;
266  if( Trait::isvalid(m_default) ) ++rc ;
267  return rc ;
268  }

◆ operator==() [1/2]

bool TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::operator== ( const NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait >, StrawStatus, DeadStrawTrait > &  rhs) const
inlineinherited

equality operator, used for compressing

Definition at line 272 of file NestedContainer.h.

272  {
273  return m_daughters.size()==0 && rhs.m_daughters.size()==0 && Trait::isequal(m_default,rhs.m_default) ;
274  }

◆ operator==() [2/2]

bool TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::operator== ( const T &  rhs) const
inlineinherited

another equality operator, used for compressing

Definition at line 277 of file NestedContainer.h.

277  {
278  return m_daughters.size()==0 && Trait::isequal(m_default,rhs) ;
279  }

◆ print()

void TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::print ( ) const
inlineinherited

Definition at line 334 of file NestedContainer.h.

334  {
335  printindent() ;
337  std::cout << "level = " << id.name(NestingLevel) << " (" << NestingLevel << ")" << std::endl ;
338  for(unsigned int i=0; i< m_daughters.size(); ++i) {
339  printindent() ;
340  std::cout << "daughter " << i << std::endl ;
342  }
343  }

◆ printindent()

void TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::printindent ( ) const
inlineinherited

some IO for debugging

Definition at line 330 of file NestedContainer.h.

330  {
331  for(int i=0; i<NestingLevel; ++i)
332  std::cout << '\t' ;
333  }

◆ set() [1/2]

void TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::set ( const ExpandedIdentifier id,
const T &  t 
)
inlineinherited

set a value.

using 'level' in id we can specify if we want to set the default value.

Definition at line 191 of file NestedContainer.h.

191  {
192  if( NestingLevel == id.level() ) {
193  // set the default value
195  } else {
196  unsigned int thisindex = id.index(NestingLevel+1) ;
197  // expand daughter array if necessary
198  if(thisindex>=m_daughters.size())
199  m_daughters.resize( thisindex+1, NestedContainerDaughterAccessor<Daughter,T,Trait>::initialvalue() ) ;
201  }
202  }

◆ set() [2/2]

void TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::set ( const T &  t)
inlineinherited

set the default value

Definition at line 235 of file NestedContainer.h.

235 { Trait::copy(m_default,t) ; }

◆ setStatus()

template<int LEVEL>
void TRTCond::StrawStatusContainerTemplate< LEVEL >::setStatus ( const ExpandedIdentifier id,
unsigned int  status 
)
inline

set status

Definition at line 55 of file StrawStatusContainer.h.

55  {
57  // what is called here...?
58  }

Member Data Documentation

◆ m_daughters

DaughterContainer TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::m_daughters
privateinherited

Container of Daughters.

Definition at line 156 of file NestedContainer.h.

◆ m_default

StrawStatus TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > , StrawStatus , DeadStrawTrait >::m_default
privateinherited

Type of atomic element.

Definition at line 157 of file NestedContainer.h.


The documentation for this class was generated from the following file:
xAOD::iterator
JetConstituentVector::iterator iterator
Definition: JetConstituentVector.cxx:68
skel.it
it
Definition: skel.GENtoEVGEN.py:423
TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, T, Trait >, T, Trait >::set
void set(const ExpandedIdentifier &id, const T &t)
set a value.
Definition: NestedContainer.h:191
ExpandedIdentifier
Definition: DetectorDescription/Identifier/Identifier/ExpandedIdentifier.h:108
TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait >, StrawStatus, DeadStrawTrait >::m_daughters
DaughterContainer m_daughters
Container of Daughters.
Definition: NestedContainer.h:156
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait >, StrawStatus, DeadStrawTrait >::FlatContainer
std::vector< std::pair< ExpandedIdentifier, const StrawStatus * > > FlatContainer
fill vector with all entries in the container. needed to dump to Peter's flat file format
Definition: NestedContainer.h:346
python.iconfTool.models.loaders.level
level
Definition: loaders.py:20
lumiFormat.i
int i
Definition: lumiFormat.py:92
TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait >, StrawStatus, DeadStrawTrait >::printindent
void printindent() const
some IO for debugging
Definition: NestedContainer.h:330
CxxUtils::set
constexpr std::enable_if_t< is_bitmask_v< E >, E & > set(E &lhs, E rhs)
Convenience function to set bits in a class enum bitmask.
Definition: bitmask.h:224
id
SG::auxid_t id
Definition: Control/AthContainers/Root/debug.cxx:191
TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait >, StrawStatus, DeadStrawTrait >::m_default
StrawStatus m_default
Type of atomic element.
Definition: NestedContainer.h:157
VKalVrtAthena::varHolder_detail::clear
void clear(T &var)
Definition: NtupleVars.h:48
DeMoScan.first
bool first
Definition: DeMoScan.py:534
Muon::print
std::string print(const MuPatSegment &)
Definition: MuonTrackSteering.cxx:28
get
T * get(TKey *tobj)
get a TObject* from a TKey* (why can't a TObject be a TKey?)
Definition: hcg.cxx:127
entries
double entries
Definition: listroot.cxx:49
CaloCellTimeCorrFiller.defaultvalue
float defaultvalue
Definition: CaloCellTimeCorrFiller.py:25
merge.status
status
Definition: merge.py:17
TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait >, StrawStatus, DeadStrawTrait >::clear
void clear()
clear entire container
Definition: NestedContainer.h:238
calibdata.copy
bool copy
Definition: calibdata.py:27
TRTCond::NestedContainerBase< NestingLevel, NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait >, StrawStatus, DeadStrawTrait >::DaughterContainer
std::vector< NestedContainer< NestingLevel+1, StrawStatus, DeadStrawTrait > > DaughterContainer
typedef of container
Definition: NestedContainer.h:154
Amg::distance
float distance(const Amg::Vector3D &p1, const Amg::Vector3D &p2)
calculates the distance between two point in 3D space
Definition: GeoPrimitivesHelpers.h:54
TSU::T
unsigned long long T
Definition: L1TopoDataTypes.h:35
python.trfValidateRootFile.rc
rc
Definition: trfValidateRootFile.py:350