#include <TrigData.h>
|
| TrigData () |
|
| TrigData (int window, int timing, const int *trigCond, const int *trigChan, bool preScale) |
|
virtual | ~TrigData () |
|
virtual const CLID & | clID () const |
|
void | setTrigCondition (int i, int j) |
|
void | setTrigCondition (const int *cond) |
|
void | setTrigChannel (int i, int j) |
|
void | setTrigChannel (const int *chan) |
|
void | setTimeWindow (int i) |
|
void | setTimingType (int i) |
|
void | setPreScale (bool i) |
|
const std::string | getTrigCondName (int i) const |
|
const int | getTrigCondition (int i) const |
|
const int * | getTrigCondition () const |
|
const int | getTrigChannel (int i) const |
|
const int * | getTrigChannel () const |
|
const int | getTimeWindow () const |
|
const int | getTimingType () const |
|
const bool | getPreScale () const |
|
void | print () const |
|
| TrigData () |
|
| TrigData (int window, int timing, const int *trigCond, const int *trigChan, bool preScale) |
|
virtual | ~TrigData () |
|
virtual const CLID & | clID () const |
|
void | setTrigCondition (int i, int j) |
|
void | setTrigCondition (const int *cond) |
|
void | setTrigChannel (int i, int j) |
|
void | setTrigChannel (const int *chan) |
|
void | setTimeWindow (int i) |
|
void | setTimingType (int i) |
|
void | setPreScale (bool i) |
|
const std::string | getTrigCondName (int i) const |
|
const int | getTrigCondition (int i) const |
|
const int * | getTrigCondition () const |
|
const int | getTrigChannel (int i) const |
|
const int * | getTrigChannel () const |
|
const int | getTimeWindow () const |
|
const int | getTimingType () const |
|
const bool | getPreScale () const |
|
void | print () const |
|
◆ TrigData() [1/4]
◆ TrigData() [2/4]
TrigData::TrigData |
( |
int |
window, |
|
|
int |
timing, |
|
|
const int * |
trigCond, |
|
|
const int * |
trigChan, |
|
|
bool |
preScale |
|
) |
| |
Definition at line 55 of file TrigData.cxx.
56{
57 m_timeWindow = window;
58 m_Timing = timing;
59 m_preScale = preScale;
60 for(int i = 0; i < 48; i++) {
61 if(i<16) {
62 m_trigChan[i] = trigChan[i];
63 }
64 m_trigcond[i] = trigCond[i];
65 }
66}
◆ ~TrigData() [1/2]
virtual TrigData::~TrigData |
( |
| ) |
|
|
inlinevirtual |
◆ TrigData() [3/4]
◆ TrigData() [4/4]
TrigData::TrigData |
( |
int |
window, |
|
|
int |
timing, |
|
|
const int * |
trigCond, |
|
|
const int * |
trigChan, |
|
|
bool |
preScale |
|
) |
| |
◆ ~TrigData() [2/2]
virtual TrigData::~TrigData |
( |
| ) |
|
|
inlinevirtual |
◆ classID() [1/2]
static const CLID & TrigData::classID |
( |
| ) |
|
|
inlinestatic |
◆ classID() [2/2]
static const CLID & TrigData::classID |
( |
| ) |
|
|
inlinestatic |
◆ clID() [1/2]
virtual const CLID & TrigData::clID |
( |
| ) |
const |
|
inlinevirtual |
◆ clID() [2/2]
virtual const CLID & TrigData::clID |
( |
| ) |
const |
|
inlinevirtual |
◆ getPreScale() [1/2]
const bool TrigData::getPreScale |
( |
| ) |
const |
|
inline |
◆ getPreScale() [2/2]
const bool TrigData::getPreScale |
( |
| ) |
const |
|
inline |
◆ getTimeWindow() [1/2]
const int TrigData::getTimeWindow |
( |
| ) |
const |
|
inline |
◆ getTimeWindow() [2/2]
const int TrigData::getTimeWindow |
( |
| ) |
const |
|
inline |
◆ getTimingType() [1/2]
const int TrigData::getTimingType |
( |
| ) |
const |
|
inline |
◆ getTimingType() [2/2]
const int TrigData::getTimingType |
( |
| ) |
const |
|
inline |
◆ getTrigChannel() [1/4]
const int * TrigData::getTrigChannel |
( |
| ) |
const |
|
inline |
◆ getTrigChannel() [2/4]
const int * TrigData::getTrigChannel |
( |
| ) |
const |
|
inline |
◆ getTrigChannel() [3/4]
const int TrigData::getTrigChannel |
( |
int |
i | ) |
const |
|
inline |
◆ getTrigChannel() [4/4]
const int TrigData::getTrigChannel |
( |
int |
i | ) |
const |
|
inline |
◆ getTrigCondition() [1/4]
const int * TrigData::getTrigCondition |
( |
| ) |
const |
|
inline |
◆ getTrigCondition() [2/4]
const int * TrigData::getTrigCondition |
( |
| ) |
const |
|
inline |
◆ getTrigCondition() [3/4]
const int TrigData::getTrigCondition |
( |
int |
i | ) |
const |
|
inline |
◆ getTrigCondition() [4/4]
const int TrigData::getTrigCondition |
( |
int |
i | ) |
const |
|
inline |
◆ getTrigCondName() [1/2]
const std::string TrigData::getTrigCondName |
( |
int |
i | ) |
const |
|
inline |
◆ getTrigCondName() [2/2]
const std::string TrigData::getTrigCondName |
( |
int |
i | ) |
const |
|
inline |
◆ print() [1/2]
void TrigData::print |
( |
| ) |
const |
Definition at line 68 of file TrigData.cxx.
68 {
69 std::cout << "TrigData contains the following effective conditions:" << std::endl;
70 for (int i = 0; i < 48; i++) {
71 if(m_trigcond[i] == 1) std::cout << '\t' << s_CONDITIONS[i] << std::endl;
72 }
73}
◆ print() [2/2]
void TrigData::print |
( |
| ) |
const |
◆ setPreScale() [1/2]
void TrigData::setPreScale |
( |
bool |
i | ) |
|
|
inline |
◆ setPreScale() [2/2]
void TrigData::setPreScale |
( |
bool |
i | ) |
|
|
inline |
◆ setTimeWindow() [1/2]
void TrigData::setTimeWindow |
( |
int |
i | ) |
|
|
inline |
◆ setTimeWindow() [2/2]
void TrigData::setTimeWindow |
( |
int |
i | ) |
|
|
inline |
◆ setTimingType() [1/2]
void TrigData::setTimingType |
( |
int |
i | ) |
|
|
inline |
◆ setTimingType() [2/2]
void TrigData::setTimingType |
( |
int |
i | ) |
|
|
inline |
◆ setTrigChannel() [1/4]
void TrigData::setTrigChannel |
( |
const int * |
chan | ) |
|
|
inline |
◆ setTrigChannel() [2/4]
void TrigData::setTrigChannel |
( |
const int * |
chan | ) |
|
|
inline |
◆ setTrigChannel() [3/4]
void TrigData::setTrigChannel |
( |
int |
i, |
|
|
int |
j |
|
) |
| |
|
inline |
◆ setTrigChannel() [4/4]
void TrigData::setTrigChannel |
( |
int |
i, |
|
|
int |
j |
|
) |
| |
|
inline |
◆ setTrigCondition() [1/4]
void TrigData::setTrigCondition |
( |
const int * |
cond | ) |
|
|
inline |
◆ setTrigCondition() [2/4]
void TrigData::setTrigCondition |
( |
const int * |
cond | ) |
|
|
inline |
◆ setTrigCondition() [3/4]
void TrigData::setTrigCondition |
( |
int |
i, |
|
|
int |
j |
|
) |
| |
|
inline |
◆ setTrigCondition() [4/4]
void TrigData::setTrigCondition |
( |
int |
i, |
|
|
int |
j |
|
) |
| |
|
inline |
The documentation for this class was generated from the following files: