#include <BunchGroupSet.h>
|
| std::ostream & | indent (std::ostream &o, int lvl, int size) const |
Definition at line 19 of file BunchGroupSet.h.
◆ BunchGroupSet() [1/2]
| BunchGroupSet::BunchGroupSet |
( |
| ) |
|
◆ BunchGroupSet() [2/2]
| BunchGroupSet::BunchGroupSet |
( |
const std::vector< BunchGroup > & | bgv | ) |
|
Definition at line 15 of file BunchGroupSet.cxx.
15 :
20{
23}
std::vector< BunchGroup > m_BunchGroups
void fillPattern(uint32_t bitpos, const BunchGroup &bg)
◆ ~BunchGroupSet()
| virtual TrigConf::BunchGroupSet::~BunchGroupSet |
( |
| ) |
|
|
overridevirtualdefault |
◆ __str__()
| string TrigConfData::__str__ |
( |
| ) |
const |
|
virtualinherited |
◆ addBunchGroup()
| void BunchGroupSet::addBunchGroup |
( |
const BunchGroup & | bg | ) |
|
◆ bgPattern()
| const std::vector< uint16_t > & TrigConf::BunchGroupSet::bgPattern |
( |
| ) |
const |
|
inline |
◆ bunchGroups()
| const std::vector< BunchGroup > & TrigConf::BunchGroupSet::bunchGroups |
( |
| ) |
const |
|
inline |
◆ comment()
| const std::string & TrigConf::TrigConfData::comment |
( |
| ) |
const |
|
inlineinherited |
◆ fillPattern()
| void BunchGroupSet::fillPattern |
( |
uint32_t | bitpos, |
|
|
const BunchGroup & | bg ) |
|
private |
Definition at line 39 of file BunchGroupSet.cxx.
39 {
40 if(bitpos>=16)
41 return;
43 const std::vector<int>&
b =
bg.bunches();
44 for(
size_t i=0;
i<
b.size(); ++
i)
46}
◆ id()
| unsigned int TrigConf::TrigConfData::id |
( |
| ) |
const |
|
inlineinherited |
◆ indent()
| std::ostream & TrigConfData::indent |
( |
std::ostream & | o, |
|
|
int | lvl, |
|
|
int | size ) const |
|
protectedinherited |
Definition at line 23 of file TrigConfData.cxx.
23 {
25 if(
width==0)
return o;
26 o << setw(lvl*size) << " ";
27 return o;
28}
◆ lvl1MasterTableId()
| unsigned int TrigConf::L1DataBaseclass::lvl1MasterTableId |
( |
| ) |
const |
|
inlineinherited |
◆ menuPartition()
| uint16_t TrigConf::BunchGroupSet::menuPartition |
( |
| ) |
const |
|
inline |
◆ name()
| const std::string & TrigConf::TrigConfData::name |
( |
| ) |
const |
|
inlineinherited |
◆ print()
| void BunchGroupSet::print |
( |
const std::string & | indent = "", |
|
|
unsigned int | detail = 1 ) const |
|
overridevirtual |
Implements TrigConf::TrigConfData.
Definition at line 50 of file BunchGroupSet.cxx.
50 {
51 if(detail>=1) {
54 cout <<
" (id=" <<
id() <<
"/v=" <<
version() <<
")";
55 cout << endl;
57 if(detail>=2) {
60 }
61 }
62}
std::ostream & indent(std::ostream &o, int lvl, int size) const
const std::string & name() const
unsigned int version() const
◆ printNameIdV()
| void TrigConfData::printNameIdV |
( |
const std::string & | indent = "" | ) |
const |
|
inherited |
Definition at line 31 of file TrigConfData.cxx.
31 {
34 cout <<
" (id=" <<
id() <<
"/v=" <<
version() <<
")";
35 cout << endl;
38}
const std::string & comment() const
◆ setBGName()
| void BunchGroupSet::setBGName |
( |
uint32_t | i, |
|
|
const std::string & | name ) |
◆ setComment()
| void TrigConf::TrigConfData::setComment |
( |
const std::string & | c | ) |
|
|
inlineinherited |
◆ setId()
| void TrigConf::TrigConfData::setId |
( |
unsigned int | id | ) |
|
|
inlineinherited |
◆ setLvl1MasterTableId()
| void TrigConf::L1DataBaseclass::setLvl1MasterTableId |
( |
unsigned int | id | ) |
|
|
inlineinherited |
◆ setMenuPartition()
| void TrigConf::BunchGroupSet::setMenuPartition |
( |
uint16_t | part | ) |
|
|
inline |
◆ setName()
| void TrigConf::TrigConfData::setName |
( |
const std::string & | name | ) |
|
|
inlineinherited |
◆ setSMK()
| void TrigConf::TrigConfData::setSMK |
( |
int | id | ) |
|
|
inlineinherited |
◆ setSuperMasterTableId()
| void TrigConf::TrigConfData::setSuperMasterTableId |
( |
int | id | ) |
|
|
inlineinherited |
◆ setVersion()
| void TrigConf::TrigConfData::setVersion |
( |
unsigned int | version | ) |
|
|
inlineinherited |
◆ smk()
| unsigned int TrigConf::TrigConfData::smk |
( |
| ) |
const |
|
inlineinherited |
◆ superMasterTableId()
| int TrigConf::TrigConfData::superMasterTableId |
( |
| ) |
const |
|
inlineinherited |
◆ version()
| unsigned int TrigConf::TrigConfData::version |
( |
| ) |
const |
|
inlineinherited |
◆ writeXML()
| void BunchGroupSet::writeXML |
( |
std::ostream & | xmlfile, |
|
|
int | indentLevel = 0, |
|
|
int | indentWidth = 2 ) const |
Definition at line 65 of file BunchGroupSet.cxx.
65 {
67 <<
"<BunchGroupSet name=\"" <<
name() <<
"\" menuPartition=\"" <<
m_MenuPartition <<
"\">" << endl;
69 bg.writeXML(
xmlfile, indentLevel+1, indentWidth);
71 << "</BunchGroupSet>" << endl;
72}
static std::vector< std::string > xmlfile
◆ m_BGpattern
| std::vector<uint16_t> TrigConf::BunchGroupSet::m_BGpattern |
|
private |
◆ m_BunchGroups
| std::vector<BunchGroup> TrigConf::BunchGroupSet::m_BunchGroups |
|
private |
◆ m_comment
| std::string TrigConf::TrigConfData::m_comment |
|
privateinherited |
◆ m_id
| unsigned int TrigConf::TrigConfData::m_id |
|
privateinherited |
◆ m_Lvl1MasterId
| unsigned int TrigConf::L1DataBaseclass::m_Lvl1MasterId |
|
privateinherited |
◆ m_MenuPartition
| uint16_t TrigConf::BunchGroupSet::m_MenuPartition |
|
private |
◆ m_name
| std::string TrigConf::TrigConfData::m_name |
|
privateinherited |
◆ m_smk
| unsigned int TrigConf::TrigConfData::m_smk |
|
privateinherited |
◆ m_version
| unsigned int TrigConf::TrigConfData::m_version |
|
privateinherited |
The documentation for this class was generated from the following files: