ATLAS Offline Software
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | List of all members
TrigConf::L1Threshold_TE Class Referencefinal

#include <L1Threshold.h>

Inheritance diagram for TrigConf::L1Threshold_TE:
Collaboration diagram for TrigConf::L1Threshold_TE:

Public Types

using ptree = boost::property_tree::ptree
 

Public Member Functions

 L1Threshold_TE (const std::string &name, const std::string &type, std::weak_ptr< L1ThrExtraInfoBase > extraInfo, const ptree &data)
 
virtual ~L1Threshold_TE () override=default
 
virtual std::string className () const override
 A string that is the name of the class. More...
 
virtual float thrValue (int eta=0) const override
 Accessor to the threshold value for eta-dependent threholds. More...
 
virtual unsigned int thrValueCounts (int eta=0) const
 
virtual unsigned int thrValueMeV (int eta=0) const
 
virtual unsigned int thrValue100MeV (int eta=0) const
 as above above but in 100 MeV More...
 
virtual ValueWithEtaDependence< float > thrValues () const
 access to the list of ThresholdValues in GeV More...
 
virtual const ValueWithEtaDependence< unsigned int > & thrValuesMeV () const
 access to the list of ThresholdValues in MeV More...
 
virtual ValueWithEtaDependence< unsigned int > thrValues100MeV () const
 access to the list of ThresholdValues in 100 MeV (for L1Topo multiplicity) More...
 
virtual ValueWithEtaDependence< unsigned int > thrValuesCounts () const
 access to the list of ThresholdValues in energy units More...
 
const std::string & type () const
 Accessor to the threshold type. More...
 
unsigned int mapping () const
 Accessor to the mapping number The mapping is unique within a type. More...
 
void setData (const ptree &data)
 Setting the configuration data. More...
 
void setData (ptree &&data)
 
void setName (const std::string &n)
 Setting the configuration element name. More...
 
virtual const std::string & name () const final
 
virtual void clear ()
 Clearing the configuration data. More...
 
const ptreedata () const
 Access to the underlying data, if needed. More...
 
bool isValue () const
 Check for attribute. More...
 
std::string getValue () const
 Access to simple content. More...
 
template<class T >
getValue () const
 
template<class T >
std::optional< T > getValue_optional () const
 access to content of the note Will return false if the value could not be converted into T More...
 
bool hasAttribute (const std::string &key) const
 Check for attribute. More...
 
bool isNull (const std::string &key) const
 Check if an attribute is null. More...
 
bool hasChild (const std::string &path) const
 Check if child exists. More...
 
std::string operator[] (const std::string &key) const
 Access to simple attribute. More...
 
template<class T >
getAttribute (const std::string &key, bool ignoreIfMissing=false, const T &def=T()) const
 Access to simple attribute. More...
 
const std::string & getAttribute (const std::string &key, bool ignoreIfMissing=false, const std::string &def="") const
 
template<class T >
std::optional< T > getAttribute_optional (const std::string &key) const
 
std::vector< DataStructuregetList (const std::string &pathToChild, bool ignoreIfMissing=false) const
 Access to array structure. More...
 
std::optional< std::vector< DataStructure > > getList_optional (const std::string &pathToChild) const
 
DataStructure getObject (const std::string &pathToChild, bool ignoreIfMissing=false) const
 Access to configuration object. More...
 
std::optional< TrigConf::DataStructuregetObject_optional (const std::string &pathToChild) const
 
std::vector< std::string > getKeys () const
 Access to the keys of an DataStructure which presents a dictionary. More...
 
 operator bool () const
 Access to initialized state. More...
 
bool isValid () const
 
bool isInitialized () const
 
bool empty () const
 Check if children exist. More...
 
void printRaw (std::ostream &os=std::cout) const
 
virtual void print (std::ostream &os=std::cout) const
 
bool ownsData () const
 

Static Public Member Functions

static std::shared_ptr< L1ThresholdcreateThreshold (const std::string &name, const std::string &type, std::weak_ptr< L1ThrExtraInfoBase > extraInfo, const ptree &data)
 static method to create type-specific L1Thresholds More...
 
static void printElement (const std::string &key, const ptree &data, uint level=0, std::ostream &os=std::cout)
 Static function to print a ptree object. More...
 

Protected Member Functions

virtual void update () override
 Update the internal data after modification of the data object. More...
 

Protected Attributes

std::string m_input {""}
 
unsigned int m_thrValue {0}
 threshold value in MeV More...
 
ValueWithEtaDependence< unsigned int > m_etaDepThrValue {""}
 eta-dependent threshold value in MeV More...
 
std::weak_ptr< L1ThrExtraInfoBasem_extraInfo
 
bool m_initialized { false }
 if initialized, the underlying ptree is has been assigned to (can be empty) More...
 
std::shared_ptr< ptreem_dataSPtr { nullptr }
 
const ptreem_dataPtr { nullptr }
 
std::string m_name {""}
 

Private Member Functions

void load ()
 

Private Attributes

std::string m_type {""}
 threshold type More...
 
unsigned int m_mapping {0}
 unique identifier amongst thresholds of the same type More...
 

Detailed Description

Definition at line 88 of file L1Threshold.h.

Member Typedef Documentation

◆ ptree

using TrigConf::DataStructure::ptree = boost::property_tree::ptree
inherited

Definition at line 40 of file DataStructure.h.

Constructor & Destructor Documentation

◆ L1Threshold_TE()

TrigConf::L1Threshold_TE::L1Threshold_TE ( const std::string &  name,
const std::string &  type,
std::weak_ptr< L1ThrExtraInfoBase extraInfo,
const ptree data 
)
inline

Definition at line 90 of file L1Threshold.h.

90  :
91  L1Threshold_Calo(name, type, extraInfo, data) {};

◆ ~L1Threshold_TE()

virtual TrigConf::L1Threshold_TE::~L1Threshold_TE ( )
overridevirtualdefault

Member Function Documentation

◆ className()

virtual std::string TrigConf::L1Threshold_TE::className ( ) const
inlineoverridevirtual

A string that is the name of the class.

Reimplemented from TrigConf::L1Threshold.

Definition at line 93 of file L1Threshold.h.

93 { return "L1Threshold_TE"; }

◆ clear()

void TrigConf::DataStructure::clear ( )
virtualinherited

Clearing the configuration data.

should be overloaded by derived object that have to clear data

leads to an uninitialized object

Reimplemented in TrigConf::L1Menu, TrigConf::L1BunchGroupSet, TrigConf::HLTMenu, TrigConf::HLTMonitoring, TrigConf::HLTPrescalesSet, TrigConf::L1CTP, and TrigConf::L1PrescalesSet.

Definition at line 65 of file DataStructure.cxx.

66 {
67  m_initialized = false;
68  m_dataSPtr = nullptr;
69  m_dataPtr = nullptr;
70 }

◆ createThreshold()

std::shared_ptr< TrigConf::L1Threshold > TrigConf::L1Threshold::createThreshold ( const std::string &  name,
const std::string &  type,
std::weak_ptr< L1ThrExtraInfoBase extraInfo,
const ptree data 
)
staticinherited

static method to create type-specific L1Thresholds

Parameters
name[in] name of the threshold
type[in] type of the threshold (e.g. EM, TAU, JET, XE, TE, eEM, jJ, gXE, ...)
extraInfo[in] link to the extra info for the given type
data[in] the threshold definition (json wrapped into a ptree)
Returns
shared ptr of the created threshold (returns ownership)

Definition at line 28 of file L1ThresholdBase.cxx.

30 {
31  if( type == "EM" )
32  return std::make_shared<L1Threshold_EM>( name, type, extraInfo, data );
33 
34  if( type == "TAU" )
35  return std::make_shared<L1Threshold_TAU>( name, type, extraInfo, data );
36 
37  if( type == "XE" )
38  return std::make_shared<L1Threshold_XE>( name, type, extraInfo, data );
39 
40  if( type == "JET" || type == "JB" || type == "JF" ) // JB and JF are Run 1 thresholds
41  return std::make_shared<L1Threshold_JET>( name, type, extraInfo, data );
42 
43  if( type == "XS" )
44  return std::make_shared<L1Threshold_XS>( name, type, extraInfo, data );
45 
46  if( type == "TE" || type == "JE" ) // JE is a Run 1 threshold
47  return std::make_shared<L1Threshold_TE>( name, type, extraInfo, data );
48 
49  if( type == "eEM" )
50  return std::make_shared<L1Threshold_eEM>( name, type, extraInfo, data );
51 
52  if( type == "jEM" )
53  return std::make_shared<L1Threshold_jEM>( name, type, extraInfo, data );
54 
55  if( type == "eTAU" )
56  return std::make_shared<L1Threshold_eTAU>( name, type, extraInfo, data );
57 
58  if( type == "jTAU" )
59  return std::make_shared<L1Threshold_jTAU>( name, type, extraInfo, data );
60 
61  if( type == "cTAU" )
62  return std::make_shared<L1Threshold_cTAU>( name, type, extraInfo, data );
63 
64  if( type == "jJ" )
65  return std::make_shared<L1Threshold_jJ>( name, type, extraInfo, data );
66 
67  if( type == "jLJ" )
68  return std::make_shared<L1Threshold_jLJ>( name, type, extraInfo, data );
69 
70  if( type == "gJ" )
71  return std::make_shared<L1Threshold_gJ>( name, type, extraInfo, data );
72 
73  if( type == "gLJ" )
74  return std::make_shared<L1Threshold_gLJ>( name, type, extraInfo, data );
75 
76  if( type == "jXE" )
77  return std::make_shared<L1Threshold_jXE>( name, type, extraInfo, data );
78 
79  if( type == "jTE" )
80  return std::make_shared<L1Threshold_jTE>( name, type, extraInfo, data );
81 
82  if( type == "gXE" )
83  return std::make_shared<L1Threshold_gXE>( name, type, extraInfo, data );
84 
85  if( type == "gTE" )
86  return std::make_shared<L1Threshold_gTE>( name, type, extraInfo, data );
87 
88  if( type == "MU" )
89  return std::make_shared<L1Threshold_MU>( name, type, extraInfo, data );
90 
91  if( type == "ZB" )
92  return std::make_shared<L1Threshold_ZB>( name, type, extraInfo, data );
93 
94  if( type == "ZBTopo" )
95  return std::make_shared<L1Threshold_ZBTopo>( name, type, extraInfo, data );
96 
97  static const std::string NIMtypes[] = { "BCM", "BCMCMB", "LUCID", "ZDC", "BPTX", "CALREQ", "MBTS", "MBTSSI", "NIM" };
98  bool isNIMtype = std::find(std::begin(NIMtypes), std::end(NIMtypes), type) != std::end(NIMtypes);
99 
100  if( isNIMtype )
101  return std::make_shared<L1Threshold_NIM>( name, type, extraInfo, data );
102 
103  if( type == "internal" )
104  return std::make_shared<L1Threshold_internal>( name, type, extraInfo, data );
105 
106  static const std::string noSpecialImp[] = { "JET", "XS", "TOPO", "MULTTOPO", "MUTOPO", "R2TOPO", "ALFA", "NSWMon", "LArSat"};
107  bool useBaseClass = std::find(std::begin(noSpecialImp), std::end(noSpecialImp),type) != std::end(noSpecialImp);
108 
109  if( useBaseClass )
110  return std::make_shared<L1Threshold>( name, type, extraInfo, data );
111 
112  throw std::runtime_error("Threshold " + name + " is not of a valid L1 threshold type: " + type);
113 
114 }

◆ data()

const ptree& TrigConf::DataStructure::data ( ) const
inlineinherited

Access to the underlying data, if needed.

Definition at line 83 of file DataStructure.h.

83  {
84  if( ! isInitialized() ) {
85  throw std::runtime_error("Trying to access data of uninitialized object of type " + className());
86  }
87  // Don't use ?: operator here: it confuses cppcheck.
88  if (ownsData()) {
89  return *m_dataSPtr.get();
90  }
91  return *m_dataPtr;
92  }

◆ empty()

bool TrigConf::DataStructure::empty ( ) const
inlineinherited

Check if children exist.

Definition at line 219 of file DataStructure.h.

219 { return data().empty(); }

◆ getAttribute() [1/2]

const std::string & TrigConf::DataStructure::getAttribute ( const std::string &  key,
bool  ignoreIfMissing = false,
const std::string &  def = "" 
) const
inherited

Definition at line 136 of file DataStructure.cxx.

137 {
138  const auto & obj = data().get_child_optional(key);
139  if( !obj ) {
140  if( ignoreIfMissing ) {
141  return def;
142  } else {
143  throw std::runtime_error(className() + "#" + name() + ": structure '" + key + "' does not exist" );
144  }
145  }
146  // check if the key points to a plain string value
147  if ( !obj.get().empty() ) {
148  if ( obj.get().front().first.empty() ) {
149  throw std::runtime_error(className() + "#" + name() + ": structure '" + key + "' is not a simple attribute but a list [], it needs to be accessed via getList(\"" + key + "\") -> vector<DataStructure>");
150  } else {
151  throw std::runtime_error(className() + "#" + name() + ": structure '" + key + "' is not a simple attribute but an object {}, it needs to be accessed via getObject(\"" + key + "\") -> DataStructure");
152  }
153  }
154  return obj.get().data();
155 }

◆ getAttribute() [2/2]

template<class T >
T TrigConf::DataStructure::getAttribute ( const std::string &  key,
bool  ignoreIfMissing = false,
const T &  def = T() 
) const
inlineinherited

Access to simple attribute.

Parameters
keyThe path to the attribute name, relative to the current one in form "path.to.child"
ignoreIfMissingControls the behavior in case of missing configuration child

Definition at line 152 of file DataStructure.h.

152  {
153  const auto & obj = data().get_child_optional(key);
154  if( !obj ) {
155  if( ignoreIfMissing ) {
156  return def;
157  } else {
158  throw std::runtime_error(className() + "#" + name() + ": structure '" + key + "' does not exist" );
159  }
160  }
161  return obj.get().get_value<T>();
162  }

◆ getAttribute_optional()

template<class T >
std::optional<T> TrigConf::DataStructure::getAttribute_optional ( const std::string &  key) const
inlineinherited

Definition at line 165 of file DataStructure.h.

165  {
166  const auto & obj = data().get_child_optional(key);
167  if( ! obj ) {
168  return std::nullopt;
169  }
170  auto v = obj.get().get_value_optional<T>();
171  return v ? std::optional(std::move(*v)) : std::nullopt;
172  }

◆ getKeys()

std::vector< std::string > TrigConf::DataStructure::getKeys ( ) const
inherited

Access to the keys of an DataStructure which presents a dictionary.

In case the DataStructure is a list or a simple attribute, an empty vector is returned

Definition at line 250 of file DataStructure.cxx.

251 {
252  std::vector<std::string> keys;
253  if ( ! data().empty() &&
254  ! data().front().first.empty() )
255  {
256  keys.reserve(data().size());
257  for( auto & entry : data() ) {
258  keys.push_back(entry.first);
259  }
260  }
261  return keys;
262 }

◆ getList()

std::vector< TrigConf::DataStructure > TrigConf::DataStructure::getList ( const std::string &  pathToChild,
bool  ignoreIfMissing = false 
) const
inherited

Access to array structure.

Parameters
pathToChildThe path to the configuration child, relative to the current one in form "path.to.child"
ignoreIfMissingControls the behavior in case of missing configuration child

In case the child is missing and ignoreIfMissing is set to true, and empty vector will be returned. Otherwise a runtime exception will be thrown.

Definition at line 158 of file DataStructure.cxx.

159 {
160  std::vector<TrigConf::DataStructure> childList;
161  const auto & list = data().get_child_optional(pathToChild);
162  if( ! list ) {
163  if ( ignoreIfMissing ) {
164  return childList;
165  } else {
166  throw std::runtime_error(className() + "#" + name() + ": structure '" + pathToChild + "' does not exist.");
167  }
168  }
169 
170  // check if the pathToChild points to a list
171 
172  // this check is not complete, because boost::ptree can not
173  // distinguish between and empty list and an empty string. In both cases
174  // the value is empty and there are no children
175 
176  if ( list.get().empty() ) {
177  if ( list.get().get_value<std::string>() != "" ) {
178  // if the value is not empty, then it is for sure an attribute ("key" : "value")
179  throw std::runtime_error(className() + "#" + name() + ": structure '" + pathToChild + "' is not a list [] but a simple attribute, it needs to be accessed via [\"" + pathToChild + "\"] -> string");
180  }
181  // else: if the value is empty, we can not say for sure and will not
182  // give this debugging hint (an empty list will be returned
183  } else if ( ! list.get().front().first.empty() ) {
184  throw std::runtime_error(className() + "#" + name() + ": structure '" + pathToChild + "' is not a list [] but an object {}, it needs to be accessed via getObject(\"" + pathToChild + "\") -> DataStructure");
185  }
186 
187  childList.reserve(list.get().size());
188 
189  for( auto & childData : list.get() )
190  childList.emplace_back( childData.second );
191 
192  return childList;
193 }

◆ getList_optional()

std::optional< std::vector< TrigConf::DataStructure > > TrigConf::DataStructure::getList_optional ( const std::string &  pathToChild) const
inherited

Definition at line 197 of file DataStructure.cxx.

198 {
199  if(data().find(pathToChild) == data().not_found()) {
200  return std::nullopt;
201  }
202  return std::optional<std::vector<TrigConf::DataStructure> >(getList(pathToChild));
203 }

◆ getObject()

TrigConf::DataStructure TrigConf::DataStructure::getObject ( const std::string &  pathToChild,
bool  ignoreIfMissing = false 
) const
inherited

Access to configuration object.

Parameters
pathToChildThe path to the configuration child, relative to the current one
ignoreIfMissingControls the behavior in case of missing configuration child

In case the child is missing and ignoreIfMissing is set to true, an uninitialized DataStructure will be returned. Otherwise a runtime exception will be thrown.

*bool ignoreIfMissing = true;
*if( const DataStructure & child = ds.getObject("path.to.child", ignoreIfMissing) ) {
cout << child["key"] << endl;
}

Definition at line 207 of file DataStructure.cxx.

208 {
209  const auto & obj = data().get_child_optional(pathToChild);
210  if( ! obj ) {
211  if ( ignoreIfMissing ) {
212  return DataStructure();
213  } else {
214  throw std::runtime_error(className() + "#" + name() + ": structure '" + pathToChild + "' does not exist.");
215  }
216  }
217  // check if the pathToChild is an attribute
218  if( obj.get().get_value<std::string>() != "" ) {
219  throw std::runtime_error(className() + "#" + name() + ": structure '" + pathToChild + "' is not an object {} but a simple attribute, it needs to be accessed via [\"" + pathToChild + "\"] -> string");
220  }
221  // check if the pathToChild points to a list
222  if ( obj.get().front().first.empty() ) {
223  throw std::runtime_error(className() + "#" + name() + ": structure '" + pathToChild + "' is not an object {} but a list [], it needs to be accessed via getList(\"" + pathToChild + "\") -> vector<DataStructure>");
224  }
225  return { obj.get() };
226 }

◆ getObject_optional()

std::optional< TrigConf::DataStructure > TrigConf::DataStructure::getObject_optional ( const std::string &  pathToChild) const
inherited

Definition at line 230 of file DataStructure.cxx.

231 {
232 
233  if(const auto & obj = data().get_child_optional(pathToChild)) {
234  // check if the pathToChild is an attribute
235  if( obj.get().get_value<std::string>() != "" ) {
236  throw std::runtime_error(className() + "#" + name() + ": structure '" + pathToChild + "' is not an object {} but a simple attribute, it needs to be accessed via [\"" + pathToChild + "\"] -> string");
237  }
238  // check if the pathToChild points to a list
239  if ( obj.get().front().first.empty() ) {
240  throw std::runtime_error(className() + "#" + name() + ": structure '" + pathToChild + "' is not an object {} but a list [], it needs to be accessed via getList(\"" + pathToChild + "\") -> vector<DataStructure>");
241  }
242  return std::optional<TrigConf::DataStructure>(obj.get());
243  }
244  return std::nullopt;
245 }

◆ getValue() [1/2]

std::string TrigConf::DataStructure::getValue ( ) const
inherited

Access to simple content.

Returns
string that is the content of the structure

For instance when the json structure contains an array of values (ptree only works with strings) which one retrieved via getList, then the values in the vector<DataStructure> can be accessed using getValue

Definition at line 80 of file DataStructure.cxx.

80  {
81  const std::string value = data().get_value<std::string>();
82  return value;
83 }

◆ getValue() [2/2]

template<class T >
T TrigConf::DataStructure::getValue ( ) const
inlineinherited

Definition at line 108 of file DataStructure.h.

108  {
109  return data().get_value<T>();
110  }

◆ getValue_optional()

template<class T >
std::optional<T> TrigConf::DataStructure::getValue_optional ( ) const
inlineinherited

access to content of the note Will return false if the value could not be converted into T

Definition at line 116 of file DataStructure.h.

116  {
117  auto v = data().get_value_optional<T>();
118  return v ? std::optional<T>(std::move(*v)) : std::nullopt;
119  }

◆ hasAttribute()

bool TrigConf::DataStructure::hasAttribute ( const std::string &  key) const
inherited

Check for attribute.

Parameters
keyThe path to the attribute name, relative to the current one in form "path.to.child"
Returns
true if path key exists and is an attribute

Definition at line 86 of file DataStructure.cxx.

86  {
87  const auto & child = data().get_child_optional( key );
88  if( ! bool(child) ) // key does not exist
89  return false;
90  return child.get().empty(); // if empty then it is an attribute, otherwise a child note
91 }

◆ hasChild()

bool TrigConf::DataStructure::hasChild ( const std::string &  path) const
inherited

Check if child exists.

Parameters
pathThe path to the child, relative to the current one in form "path.to.child"
Returns
true if path exists

Definition at line 114 of file DataStructure.cxx.

114  {
115  const auto & child = data().get_child_optional( path );
116  return bool(child);
117 }

◆ isInitialized()

bool TrigConf::DataStructure::isInitialized ( ) const
inlineinherited

Definition at line 216 of file DataStructure.h.

216 { return m_initialized; }

◆ isNull()

bool TrigConf::DataStructure::isNull ( const std::string &  key) const
inherited

Check if an attribute is null.

Parameters
keyThe path to the attribute name, relative to the current one in form "path.to.child"
Returns
true if path key exists and is null

If the attribute doesn't exist, the function returns false. To check if an attribute exists and is null, use it together with hasAttribute.

Definition at line 94 of file DataStructure.cxx.

94  {
95  auto child = data().get_child_optional( key );
96  if( ! child ) {
97  return false;
98  }
99  return child->get_value<std::string>() == "null";
100 }

◆ isValid()

bool TrigConf::DataStructure::isValid ( ) const
inlineinherited

Definition at line 215 of file DataStructure.h.

215 { return m_initialized; }

◆ isValue()

bool TrigConf::DataStructure::isValue ( ) const
inherited

Check for attribute.

Returns
true if the structure is just a value

Definition at line 74 of file DataStructure.cxx.

74  {
75  return data().empty(); // just a key->value pair, no children
76 }

◆ load()

void TrigConf::L1Threshold_Calo::load ( )
privateinherited

Definition at line 241 of file L1ThresholdBase.cxx.

242 {
243  if( type() == "internal" ) {
244  return;
245  }
246  m_thrValue = gev2MeVThrVal( getAttribute<double>("value", true, 0) );
247  m_input = getAttribute("input", true, "");
248  if( const auto & thrVs = data().get_child_optional("thrValues") ) {
249  for( auto & x : thrVs.get() ) {
250  auto value = gev2MeVThrVal( x.second.get_child("value").get_value<float>() );
251  auto etamin = x.second.get_child("etamin").get_value<unsigned int>();
252  auto etamax = x.second.get_child("etamax").get_value<unsigned int>();
253  auto priority = x.second.get_child("priority").get_value<unsigned int>();
254  m_etaDepThrValue.addRangeValue(value, etamin, etamax, priority, /*symmetric=*/ false);
255  }
256  }
257  if( const auto & ranges = data().get_child_optional("ranges") ) {
259  for( auto & x : ranges.get() ) {
260  auto etamin = x.second.get_child("etamin").get_value<unsigned int>();
261  auto etamax = x.second.get_child("etamax").get_value<unsigned int>();
262  m_etaDepThrValue.addRangeValue(m_thrValue, etamin, etamax, /*priority=*/ 1, /*symmetric=*/ false);
263  }
264  }
265 }

◆ mapping()

unsigned int TrigConf::L1Threshold::mapping ( ) const
inlineinherited

Accessor to the mapping number The mapping is unique within a type.

Definition at line 163 of file L1ThresholdBase.h.

164  { return m_mapping; }

◆ name()

const std::string & TrigConf::DataStructure::name ( ) const
finalvirtualinherited

Definition at line 109 of file DataStructure.cxx.

109  {
110  return m_name;
111 }

◆ operator bool()

TrigConf::DataStructure::operator bool ( ) const
inlineexplicitinherited

Access to initialized state.

Definition at line 214 of file DataStructure.h.

214 { return m_initialized; }

◆ operator[]()

std::string TrigConf::DataStructure::operator[] ( const std::string &  key) const
inherited

Access to simple attribute.

Parameters
keyThe path to the attribute name, relative to the current one in form "path.to.child"

Definition at line 121 of file DataStructure.cxx.

122 {
123  const auto & obj = data().get_child(key);
124  // check if the key points to a plain string value
125  if ( !obj.empty() ) {
126  if ( obj.front().first.empty() ) {
127  throw std::runtime_error(className() + "#" + name() + ": structure '" + key + "' is not a simple attribute but a list [], it needs to be accessed via getList(\"" + key + "\") -> vector<DataStructure>");
128  } else {
129  throw std::runtime_error(className() + "#" + name() + ": structure '" + key + "' is not a simple attribute but an object {}, it needs to be accessed via getObject(\"" + key + "\") -> DataStructure");
130  }
131  }
132  return obj.data();
133 }

◆ ownsData()

bool TrigConf::DataStructure::ownsData ( ) const
inlineinherited

Definition at line 242 of file DataStructure.h.

242  {
243  return (bool)m_dataSPtr;
244  }

◆ print()

void TrigConf::DataStructure::print ( std::ostream &  os = std::cout) const
virtualinherited

Reimplemented in TrigConf::L1TopoAlgorithm, and TrigConf::L1Threshold_EM.

Definition at line 272 of file DataStructure.cxx.

273 {
274  printElement("", data(), 0, os);
275  os << std::endl;
276 }

◆ printElement()

void TrigConf::DataStructure::printElement ( const std::string &  key,
const ptree data,
uint  level = 0,
std::ostream &  os = std::cout 
)
staticinherited

Static function to print a ptree object.

Parameters
keyThe key of this data as found in the parent structure
dataThe ptree to print
levelThe substruture level used to indent the output
osThe output stream

Definition at line 279 of file DataStructure.cxx.

280 {
281  constexpr char del = '"';
282 
283  const std::string value = data.get_value<std::string>();
284 
285  if( data.empty() ) { // no children, so just a key->value pair
286  uint n(4*level); while(n--) os << " ";
287  os << del << key << del << ": " << del << value << del;
288  return;
289  }
290 
291 
292  bool isArray ( data.begin()->first.empty() ); // dictionaries have keys, arrays don't
293  { uint n(4*level); while(n--) os << " "; }
294  if ( ! key.empty() )
295  os << del << key << del << ": ";
296  os << (isArray ? "[" : "{") << std::endl;
297 
298  size_t childCounter = data.size();
299  for( const boost::property_tree::ptree::value_type & x : data ) {
300  printElement(x.first, x.second, level + 1, os);
301  if( --childCounter ) os << ",";
302  os << std::endl;
303  }
304  { uint n(4*level); while(n--) os << " "; }
305  os << (isArray ? "]" : "}");
306 
307 }

◆ printRaw()

void TrigConf::DataStructure::printRaw ( std::ostream &  os = std::cout) const
inherited

Definition at line 265 of file DataStructure.cxx.

266 {
267  boost::property_tree::json_parser::write_json( os, data() );
268 }

◆ setData() [1/2]

void TrigConf::DataStructure::setData ( const ptree data)
inherited

Setting the configuration data.

Definition at line 39 of file DataStructure.cxx.

40 {
41  clear();
42  m_initialized = true;
43  m_dataSPtr.reset();
44  m_dataPtr = &data;
45  update();
46 }

◆ setData() [2/2]

void TrigConf::DataStructure::setData ( ptree &&  data)
inherited

Definition at line 50 of file DataStructure.cxx.

51 {
52  clear();
53  m_initialized = true;
54  m_dataSPtr = std::make_shared<ptree>(std::move(data));
55  m_dataPtr = nullptr;
56  update();
57 }

◆ setName()

void TrigConf::DataStructure::setName ( const std::string &  n)
inherited

Setting the configuration element name.

Definition at line 59 of file DataStructure.cxx.

59  {
60  m_name = n;
61 }

◆ thrValue()

float TrigConf::L1Threshold_Calo::thrValue ( int  eta = 0) const
overridevirtualinherited

Accessor to the threshold value for eta-dependent threholds.

Parameters
etathe eta value should be given for potentially eta-dependent thresholds must be overwritten by L1Threshold_Calo and L1Threnshold_MU

Reimplemented from TrigConf::L1Threshold.

Definition at line 272 of file L1ThresholdBase.cxx.

273 {
274  return thrValueMeV(eta) / 1000.0f;
275 }

◆ thrValue100MeV()

unsigned int TrigConf::L1Threshold_Calo::thrValue100MeV ( int  eta = 0) const
virtualinherited

as above above but in 100 MeV

Definition at line 284 of file L1ThresholdBase.cxx.

284  {
285  return energyInCounts( thrValueMeV(eta), 100 );
286 }

◆ thrValueCounts()

unsigned int TrigConf::L1Threshold_Calo::thrValueCounts ( int  eta = 0) const
virtualinherited

Definition at line 278 of file L1ThresholdBase.cxx.

278  {
279  auto extraInfo = m_extraInfo.lock();
280  return energyInCounts( thrValueMeV(eta), extraInfo->resolutionMeV() );
281 }

◆ thrValueMeV()

unsigned int TrigConf::L1Threshold_Calo::thrValueMeV ( int  eta = 0) const
virtualinherited

Definition at line 289 of file L1ThresholdBase.cxx.

289  {
291 }

◆ thrValues()

TrigConf::ValueWithEtaDependence< float > TrigConf::L1Threshold_Calo::thrValues ( ) const
virtualinherited

access to the list of ThresholdValues in GeV

Definition at line 294 of file L1ThresholdBase.cxx.

294  {
295  auto thresholdValuesGeV = ValueWithEtaDependence<float>{ m_etaDepThrValue.name()+"GeV" };
296  for( auto & r : m_etaDepThrValue ) {
297  thresholdValuesGeV.addRangeValue(r.value() / 1000.0f, r.etaMin(), r.etaMax(), r.priority(), r.symmetric());
298  }
299  return thresholdValuesGeV;
300 }

◆ thrValues100MeV()

TrigConf::ValueWithEtaDependence< unsigned int > TrigConf::L1Threshold_Calo::thrValues100MeV ( ) const
virtualinherited

access to the list of ThresholdValues in 100 MeV (for L1Topo multiplicity)

Definition at line 308 of file L1ThresholdBase.cxx.

308  {
309  auto thrValues100MeV = ValueWithEtaDependence<unsigned int>{ m_etaDepThrValue.name()+"100MeV" };
310  for( auto & r : m_etaDepThrValue ) {
311  thrValues100MeV.addRangeValue( energyInCounts( r.value(), 100 ), r.etaMin(), r.etaMax(), r.priority(), r.symmetric());
312  }
313  return thrValues100MeV;
314 }

◆ thrValuesCounts()

TrigConf::ValueWithEtaDependence< unsigned int > TrigConf::L1Threshold_Calo::thrValuesCounts ( ) const
virtualinherited

access to the list of ThresholdValues in energy units

Definition at line 317 of file L1ThresholdBase.cxx.

317  {
318  auto extraInfo = m_extraInfo.lock();
319  auto thrValuesCounts = ValueWithEtaDependence<unsigned int>{ m_etaDepThrValue.name()+"Counts" };
320  for( auto & r : m_etaDepThrValue ) {
321  thrValuesCounts.addRangeValue( energyInCounts( r.value(), extraInfo->resolutionMeV() ), r.etaMin(), r.etaMax(), r.priority(), r.symmetric());
322  }
323  return thrValuesCounts;
324 }

◆ thrValuesMeV()

const TrigConf::ValueWithEtaDependence< unsigned int > & TrigConf::L1Threshold_Calo::thrValuesMeV ( ) const
virtualinherited

access to the list of ThresholdValues in MeV

Definition at line 303 of file L1ThresholdBase.cxx.

303  {
304  return m_etaDepThrValue;
305 }

◆ type()

const std::string& TrigConf::L1Threshold::type ( ) const
inlineinherited

Accessor to the threshold type.

Definition at line 157 of file L1ThresholdBase.h.

158  { return m_type; }

◆ update()

void TrigConf::L1Threshold_Calo::update ( )
overrideprotectedvirtualinherited

Member Data Documentation

◆ m_dataPtr

const ptree* TrigConf::DataStructure::m_dataPtr { nullptr }
protectedinherited

Definition at line 257 of file DataStructure.h.

◆ m_dataSPtr

std::shared_ptr<ptree> TrigConf::DataStructure::m_dataSPtr { nullptr }
protectedinherited

Definition at line 256 of file DataStructure.h.

◆ m_etaDepThrValue

ValueWithEtaDependence<unsigned int> TrigConf::L1Threshold_Calo::m_etaDepThrValue {""}
protectedinherited

eta-dependent threshold value in MeV

Definition at line 255 of file L1ThresholdBase.h.

◆ m_extraInfo

std::weak_ptr<L1ThrExtraInfoBase> TrigConf::L1Threshold::m_extraInfo
protectedinherited

Definition at line 177 of file L1ThresholdBase.h.

◆ m_initialized

bool TrigConf::DataStructure::m_initialized { false }
protectedinherited

if initialized, the underlying ptree is has been assigned to (can be empty)

Definition at line 254 of file DataStructure.h.

◆ m_input

std::string TrigConf::L1Threshold_Calo::m_input {""}
protectedinherited

Definition at line 246 of file L1ThresholdBase.h.

◆ m_mapping

unsigned int TrigConf::L1Threshold::m_mapping {0}
privateinherited

unique identifier amongst thresholds of the same type

Definition at line 184 of file L1ThresholdBase.h.

◆ m_name

std::string TrigConf::DataStructure::m_name {""}
protectedinherited

Definition at line 259 of file DataStructure.h.

◆ m_thrValue

unsigned int TrigConf::L1Threshold_Calo::m_thrValue {0}
protectedinherited

threshold value in MeV

Definition at line 253 of file L1ThresholdBase.h.

◆ m_type

std::string TrigConf::L1Threshold::m_type {""}
privateinherited

threshold type

Definition at line 183 of file L1ThresholdBase.h.


The documentation for this class was generated from the following file:
TrigConf::DataStructure::data
const ptree & data() const
Access to the underlying data, if needed.
Definition: DataStructure.h:83
TrigConf::L1Threshold_Calo::thrValuesCounts
virtual ValueWithEtaDependence< unsigned int > thrValuesCounts() const
access to the list of ThresholdValues in energy units
Definition: L1ThresholdBase.cxx:317
TrigConf::ValueWithEtaDependence::setOutsideRangeValue
void setOutsideRangeValue(const T &value)
beamspotman.r
def r
Definition: beamspotman.py:676
trigbs_pickEvents.ranges
ranges
Definition: trigbs_pickEvents.py:60
checkxAOD.ds
ds
Definition: Tools/PyUtils/bin/checkxAOD.py:257
TrigConf::DataStructure::isInitialized
bool isInitialized() const
Definition: DataStructure.h:216
athena.path
path
python interpreter configuration --------------------------------------—
Definition: athena.py:126
max
#define max(a, b)
Definition: cfImp.cxx:41
find
std::string find(const std::string &s)
return a remapped string
Definition: hcg.cxx:135
TrigConf::DataStructure::empty
bool empty() const
Check if children exist.
Definition: DataStructure.h:219
TrigConf::DataStructure::printElement
static void printElement(const std::string &key, const ptree &data, uint level=0, std::ostream &os=std::cout)
Static function to print a ptree object.
Definition: DataStructure.cxx:279
eta
Scalar eta() const
pseudorapidity method
Definition: AmgMatrixBasePlugin.h:79
PlotCalibFromCool.begin
begin
Definition: PlotCalibFromCool.py:94
TrigConf::DataStructure::getAttribute
T getAttribute(const std::string &key, bool ignoreIfMissing=false, const T &def=T()) const
Access to simple attribute.
Definition: DataStructure.h:152
athena.value
value
Definition: athena.py:122
python.selector.AtlRunQuerySelectorLhcOlc.priority
priority
Definition: AtlRunQuerySelectorLhcOlc.py:611
TrigConf::L1Threshold::type
const std::string & type() const
Accessor to the threshold type.
Definition: L1ThresholdBase.h:157
TrigConf::DataStructure::m_dataSPtr
std::shared_ptr< ptree > m_dataSPtr
Definition: DataStructure.h:256
TrigConf::L1Threshold_Calo::load
void load()
Definition: L1ThresholdBase.cxx:241
TrigConf::DataStructure::name
virtual const std::string & name() const final
Definition: DataStructure.cxx:109
TrigConf::DataStructure::m_name
std::string m_name
Definition: DataStructure.h:259
TrigConf::L1Threshold_Calo::m_input
std::string m_input
Definition: L1ThresholdBase.h:246
x
#define x
TrigConf::L1Threshold::m_mapping
unsigned int m_mapping
unique identifier amongst thresholds of the same type
Definition: L1ThresholdBase.h:184
TrigConf::ValueWithEtaDependence::at
const T & at(int eta) const
mergePhysValFiles.end
end
Definition: DataQuality/DataQualityUtils/scripts/mergePhysValFiles.py:93
python.iconfTool.models.loaders.level
level
Definition: loaders.py:20
TrigConf::ValueWithEtaDependence::empty
bool empty() const
python.setupRTTAlg.size
int size
Definition: setupRTTAlg.py:39
uint
unsigned int uint
Definition: LArOFPhaseFill.cxx:20
TrigConf::L1Threshold::update
virtual void update() override
Update the internal data after modification of the data object.
Definition: L1ThresholdBase.cxx:132
beamspotman.n
n
Definition: beamspotman.py:731
TrigConf::L1Threshold_Calo::m_thrValue
unsigned int m_thrValue
threshold value in MeV
Definition: L1ThresholdBase.h:253
TrigConf::L1Threshold_Calo::m_etaDepThrValue
ValueWithEtaDependence< unsigned int > m_etaDepThrValue
eta-dependent threshold value in MeV
Definition: L1ThresholdBase.h:255
TrigConf::DataStructure::className
virtual std::string className() const
A string that is the name of the class.
Definition: DataStructure.cxx:104
histSizes.list
def list(name, path='/')
Definition: histSizes.py:38
TrigConf::L1Threshold::m_extraInfo
std::weak_ptr< L1ThrExtraInfoBase > m_extraInfo
Definition: L1ThresholdBase.h:177
ReadFromCoolCompare.os
os
Definition: ReadFromCoolCompare.py:231
GetAllXsec.entry
list entry
Definition: GetAllXsec.py:132
TrigConf::energyInCounts
unsigned int energyInCounts(unsigned int energyMeV, unsigned int energyResolutionMeV)
helper funtion to translate energies into counts
Definition: L1ThresholdBase.cxx:18
TrigConf::DataStructure::getList
std::vector< DataStructure > getList(const std::string &pathToChild, bool ignoreIfMissing=false) const
Access to array structure.
Definition: DataStructure.cxx:158
TrigConf::DataStructure::m_initialized
bool m_initialized
if initialized, the underlying ptree is has been assigned to (can be empty)
Definition: DataStructure.h:254
python.PyAthena.v
v
Definition: PyAthena.py:157
TrigConf::L1Threshold::m_type
std::string m_type
threshold type
Definition: L1ThresholdBase.h:183
TrigConf::ValueWithEtaDependence::addRangeValue
void addRangeValue(const T &value, int etaMin, int etaMax, unsigned int priority, bool symmetric=true)
DeMoScan.first
bool first
Definition: DeMoScan.py:534
TrigConf::DataStructure::clear
virtual void clear()
Clearing the configuration data.
Definition: DataStructure.cxx:65
python.Bindings.keys
keys
Definition: Control/AthenaPython/python/Bindings.py:790
TrigConf::DataStructure::ownsData
bool ownsData() const
Definition: DataStructure.h:242
TrigConf::L1Threshold_Calo::L1Threshold_Calo
L1Threshold_Calo()=delete
Constructor.
TrigConf::L1Threshold_Calo::thrValueMeV
virtual unsigned int thrValueMeV(int eta=0) const
Definition: L1ThresholdBase.cxx:289
TrigConf::L1Threshold_Calo::thrValues100MeV
virtual ValueWithEtaDependence< unsigned int > thrValues100MeV() const
access to the list of ThresholdValues in 100 MeV (for L1Topo multiplicity)
Definition: L1ThresholdBase.cxx:308
LArCellBinning.etamin
etamin
Definition: LArCellBinning.py:137
python.PyAthena.obj
obj
Definition: PyAthena.py:135
TrigConf::DataStructure::DataStructure
DataStructure()
Default constructor, leading to an uninitialized configuration object.
Definition: DataStructure.cxx:11
xAOD::bool
setBGCode setTAP setLVL2ErrorBits bool
Definition: TrigDecision_v1.cxx:60
TSU::T
unsigned long long T
Definition: L1TopoDataTypes.h:35
TrigConf::DataStructure::m_dataPtr
const ptree * m_dataPtr
Definition: DataStructure.h:257
mapkey::key
key
Definition: TElectronEfficiencyCorrectionTool.cxx:37
TrigConf::DataStructure::update
virtual void update()
Update the internal data after modification of the data object.
Definition: DataStructure.h:252
TrigConf::ValueWithEtaDependence::name
const std::string & name() const
Definition: L1ThresholdBase.h:54