ATLAS Offline Software
Loading...
Searching...
No Matches
VP1TriggerDecisionChannel Class Reference

#include <VP1TriggerDecisionChannel.h>

Inheritance diagram for VP1TriggerDecisionChannel:
Collaboration diagram for VP1TriggerDecisionChannel:

Public Types

enum  Type {
  UNKNOWN = 0 , THREEDIMENSIONAL , TWODIMENSIONAL , HISTOGRAM ,
  NUMBERS
}

Signals

void message (QString)
void uniqueNameChanged (const QString &)
void systemRefreshInfoChanged (QString sysrefreshing, int nsysOn, int nsysOnRefreshed)

Public Member Functions

 VP1TriggerDecisionChannel ()
virtual ~VP1TriggerDecisionChannel ()
void init ()
Type type () const
void create ()
void systemErased (IVP1System *)
void systemRefreshed (IVP1System *)
virtual bool isAccumulator () const
void setRunEvtNumber (int runnumber, unsigned long long eventnumber)
virtual QByteArray saveState ()
virtual void restoreFromState (QByteArray)
const QString & name () const
const QString unique_name () const
const QString & information () const
const QString & contact_info () const
virtual QPixmap getSnapshot (bool transp=false, int width=0, bool batch=false)
virtual bool setAntiAliasing (bool aa)
virtual bool isAntiAliasing ()
virtual void dockResized ()

Static Public Member Functions

static QString str (const QString &s)
static QString str (const char *c)
static QString str (const bool b)
static QString str (const QColor &)
static QString str (const SbColor &)
static QString str (const VP1Interval &)
static QString str (const SbVec2d &)
static QString str (const SbVec2f &)
static QString str (const SbVec2s &)
static QString str (const SbVec3d &)
static QString str (const SbVec3f &)
static QString str (const SbVec3s &)
static QString str (const SbVec4d &)
static QString str (const SbVec4f &)
static QString str (short int n)
static QString str (unsigned short int n)
static QString str (long n)
static QString str (ulong n)
static QString str (int n)
static QString str (uint n)
static QString str (qlonglong n)
static QString str (qulonglong n)
static QString str (const double &d)
static QString str (const float &f)
static QString str (const void *)
template<class T>
static QString str (const T *t)
template<class T>
static QString str (const QFlags< T > &f)
template<class T>
static QString str (const HepGeom::BasicVector3D< T > &t)
static QString str (const Amg::Vector3D &t)
template<class T>
static QString str (const QList< T > &t)

Protected Slots

void entriesChanged (const QStringList &entry_key, const QStringList &entry_type)
void cellActivated (int row, int column)

Protected Member Functions

virtual void goingToNextEvent ()
virtual void uncreate ()
virtual void lastOfActiveSystemsRefreshed ()
void turnOn (IVP1System *)
void turnOff (IVP1System *, const bool &immediateErase=true)
void getRunEvtNumber (int &runnumber, unsigned long long &eventnumber)
void setEvtTimestamp (unsigned timestamp)
void getEvtTimestamp (unsigned &timestamp)
void registerController (QWidget *)
void registerSystem (IVP1System *)

Private Types

enum  State { CONSTRUCTED =0 , READY , UNCREATED }

Private Member Functions

void clearAll ()
unsigned cloneID () const
QWidget * controllerWidget ()
void emitRefreshInfoChanged ()
bool hasRefreshingSystem ()
void setCloneID (unsigned id)
const std::set< IVP1System * > & systems ()
void deleteControllers ()
State state () const
void setState (const State &)
void setCanRegister (const bool &controller, const bool &system)

Private Attributes

QTableWidget * m_tableWidget
std::unique_ptr< VP1TriggerDecisionSystemm_trigdecsystem
Impm_d

Detailed Description

Definition at line 25 of file VP1TriggerDecisionChannel.h.

Member Enumeration Documentation

◆ State

enum IVP1ChannelWidget::State
privateinherited
Enumerator
CONSTRUCTED 
READY 
UNCREATED 

Definition at line 130 of file IVP1ChannelWidget.h.

◆ Type

enum IVP1ChannelWidget::Type
inherited
Enumerator
UNKNOWN 
THREEDIMENSIONAL 
TWODIMENSIONAL 
HISTOGRAM 
NUMBERS 

Definition at line 46 of file IVP1ChannelWidget.h.

Constructor & Destructor Documentation

◆ VP1TriggerDecisionChannel()

VP1TriggerDecisionChannel::VP1TriggerDecisionChannel ( )

Definition at line 22 of file VP1TriggerDecisionChannel.cxx.

24 "This channel simply shows the trigger decision, provided by the VP1TrigDecSystem.",
25 "wyizhang@cern.ch, Riccardo.Maria.Bianchi@cern.ch"),
27{
28}
#define VP1CHANNELNAMEINPLUGIN(cls, nme)
IVP1ChannelWidget(const QString &name, const QString &information, const QString &contact_info)

◆ ~VP1TriggerDecisionChannel()

VP1TriggerDecisionChannel::~VP1TriggerDecisionChannel ( )
virtual

Definition at line 30 of file VP1TriggerDecisionChannel.cxx.

31{
32}

Member Function Documentation

◆ cellActivated

void VP1TriggerDecisionChannel::cellActivated ( int row,
int column )
protectedslot

Definition at line 115 of file VP1TriggerDecisionChannel.cxx.

116{
117 QString key = m_tableWidget->item(row,0)->text();
118 QString type = m_tableWidget->item(row,1)->text();
119
120 QStringList info = m_trigdecsystem->getInfoForEntry(key,type);
121
122 message("===== "+key+" ("+(type.isEmpty()? 0 :type)+"):");
123
124 for (const QString& line : info)
125 message(line);
126
127}
void message(QString)
std::unique_ptr< VP1TriggerDecisionSystem > m_trigdecsystem

◆ clearAll()

void VP1TriggerDecisionChannel::clearAll ( )
private

Definition at line 102 of file VP1TriggerDecisionChannel.cxx.

103{
104 m_tableWidget->setUpdatesEnabled(false);
105 m_tableWidget->setSortingEnabled(false);
106 m_tableWidget->clearContents();
107
108 while (m_tableWidget->rowCount()>0)
109 m_tableWidget->removeRow(m_tableWidget->rowCount()-1);
110 m_tableWidget->setUpdatesEnabled(true);
111
112}

◆ cloneID()

unsigned IVP1ChannelWidget::cloneID ( ) const
privateinherited

Definition at line 197 of file IVP1ChannelWidget.cxx.

198{
199 return m_d->cloneid;
200}

◆ contact_info()

const QString & IVP1ChannelWidget::contact_info ( ) const
inherited

Definition at line 191 of file IVP1ChannelWidget.cxx.

192{
193 return m_d->contact_info;
194}

◆ controllerWidget()

QWidget * IVP1ChannelWidget::controllerWidget ( )
privateinherited

Definition at line 77 of file IVP1ChannelWidget.cxx.

78{
79 return m_d->controller;
80}

◆ create()

void VP1TriggerDecisionChannel::create ( )
virtual

Reimplemented from IVP1ChannelWidget.

Definition at line 45 of file VP1TriggerDecisionChannel.cxx.

46{
47
48 //Setup this widget
49 Ui::TrigDecChannelWidgetForm ui;
50 ui.setupUi(this);
51 m_tableWidget=ui.tableWidget;
52 m_tableWidget->setColumnCount(2);
53 m_tableWidget->setHorizontalHeaderLabels((QStringList()<<"Signature"<<"Passed?"));
54 m_tableWidget->setAlternatingRowColors ( true );
55 m_tableWidget->setEditTriggers(QAbstractItemView::NoEditTriggers);
56
57 connect(m_tableWidget,SIGNAL(cellActivated(int,int)),this,SLOT(cellActivated(int,int)));
58}
void cellActivated(int row, int column)

◆ deleteControllers()

void IVP1ChannelWidget::deleteControllers ( )
privateinherited

Definition at line 161 of file IVP1ChannelWidget.cxx.

162{
163 std::set<IVP1System *>::iterator it, itE = m_d->systems.end();
164 for (it=m_d->systems.begin();it!=itE;++it) {
165 // assert((*it)->state()==IVP1System::ERASED);
166 if (*it)
167 (*it)->deleteController();
168 }
169 if (m_d->controller)
170 m_d->controller->deleteLater();
171 m_d->controller = 0;
172}

◆ dockResized()

void IVP1ChannelWidget::dockResized ( )
virtualinherited

Reimplemented in IVP13DStandardChannelWidget.

Definition at line 315 of file IVP1ChannelWidget.cxx.

316{
317}

◆ emitRefreshInfoChanged()

void IVP1ChannelWidget::emitRefreshInfoChanged ( )
privateinherited

Definition at line 268 of file IVP1ChannelWidget.cxx.

269{
270 int nsysOn(0), nsysOnRefreshed(0);
271 QString sysrefreshing;
272 std::set<IVP1System *>::iterator it, itE = m_d->systems.end();
273 for (it=m_d->systems.begin();it!=itE;++it) {
274 if ((*it)->activeState()==IVP1System::ON) {
275 ++nsysOn;
276 if((*it)->state()==IVP1System::REFRESHED)
277 ++nsysOnRefreshed;
278 if ((*it)->isRefreshing()) {
279 assert(sysrefreshing.isEmpty());
280 sysrefreshing=(*it)->name();
281 }
282 }
283 }
284 //Fixme: Only emit if actually changed.
285 systemRefreshInfoChanged(sysrefreshing, nsysOn, nsysOnRefreshed);
286}
void systemRefreshInfoChanged(QString sysrefreshing, int nsysOn, int nsysOnRefreshed)

◆ entriesChanged

void VP1TriggerDecisionChannel::entriesChanged ( const QStringList & entry_key,
const QStringList & entry_type )
protectedslot

Definition at line 61 of file VP1TriggerDecisionChannel.cxx.

62{
63 clearAll();
64
65 if (entry_key.count()!=entry_type.count())
66 {
67 message("Error: Received data has wrong format!");
68 return;
69 }
70
71 m_tableWidget->setUpdatesEnabled(false);
72
73 //Turn sorting off while inserting (otherwise the correct row index to use will likely change in the middle of insertions):
74 m_tableWidget->setSortingEnabled(false);
75
76 for (int irow = 0; irow<entry_key.count();++irow)
77 {
78 m_tableWidget->insertRow ( irow );
79 m_tableWidget->setItem(irow, 0, new QTableWidgetItem(entry_key.at(irow)));
80 m_tableWidget->setItem(irow, 1, new QTableWidgetItem(entry_type.at(irow)));
81 }
82
83 m_tableWidget->setSortingEnabled(true);
84 m_tableWidget->resizeColumnsToContents();
85 m_tableWidget->resizeRowsToContents();
86 m_tableWidget->setUpdatesEnabled(true);
87}

◆ getEvtTimestamp()

void IVP1ChannelWidget::getEvtTimestamp ( unsigned & timestamp)
protectedinherited

Definition at line 262 of file IVP1ChannelWidget.cxx.

263{
264 timestamp = m_d->timestamp;
265}

◆ getRunEvtNumber()

void IVP1ChannelWidget::getRunEvtNumber ( int & runnumber,
unsigned long long & eventnumber )
protectedinherited

Definition at line 255 of file IVP1ChannelWidget.cxx.

256{
257 runnumber = m_d->runnumber;
258 eventnumber = m_d->eventnumber;
259}
static std::vector< uint32_t > runnumber
Definition iLumiCalc.h:37

◆ getSnapshot()

QPixmap IVP1ChannelWidget::getSnapshot ( bool transp = false,
int width = 0,
bool batch = false )
virtualinherited

Reimplemented in IVP13DChannelWidget, and IVP13DStandardChannelWidget.

Definition at line 306 of file IVP1ChannelWidget.cxx.

307{
308 VP1Msg::messageVerbose("IVP1ChannelWidget::getSnapshot() - using QPixmap::grabWidget()");
309 VP1Msg::messageVerbose("(and so, not using the values - transp: "+QString::number(transp)+" - width: "+QString::number(width)+" - batch: " + batch +")");
310
311 return this->grab();
312}
const double width
static void messageVerbose(const QString &)
Definition VP1Msg.cxx:84

◆ goingToNextEvent()

virtual void IVP1ChannelWidget::goingToNextEvent ( )
inlineprotectedvirtualinherited

Reimplemented in IVP13DChannelWidget.

Definition at line 57 of file IVP1ChannelWidget.h.

57{}

◆ hasRefreshingSystem()

bool IVP1ChannelWidget::hasRefreshingSystem ( )
privateinherited

Definition at line 289 of file IVP1ChannelWidget.cxx.

289 {
290 std::set<IVP1System *>::iterator it, itE = m_d->systems.end();
291 for (it=m_d->systems.begin();it!=itE;++it) {
292 if ((*it)->isRefreshing())
293 return true;
294 }
295 return false;
296}

◆ information()

const QString & IVP1ChannelWidget::information ( ) const
inherited

Definition at line 185 of file IVP1ChannelWidget.cxx.

186{
187 return m_d->information;
188}

◆ init()

void VP1TriggerDecisionChannel::init ( )
virtual

Implements IVP1ChannelWidget.

Definition at line 35 of file VP1TriggerDecisionChannel.cxx.

36{
37 m_trigdecsystem.reset (new VP1TriggerDecisionSystem());
39
40 connect(m_trigdecsystem.get(),SIGNAL(entriesChanged(const QStringList&,const QStringList&)),
41 this, SLOT( entriesChanged(const QStringList&,const QStringList&)) );
42}
void registerSystem(IVP1System *)
void entriesChanged(const QStringList &entry_key, const QStringList &entry_type)

◆ isAccumulator()

bool IVP1ChannelWidget::isAccumulator ( ) const
virtualinherited

Definition at line 83 of file IVP1ChannelWidget.cxx.

84{
85 return false;
86}

◆ isAntiAliasing()

virtual bool IVP1ChannelWidget::isAntiAliasing ( )
inlinevirtualinherited

Reimplemented in IVP13DStandardChannelWidget.

Definition at line 105 of file IVP1ChannelWidget.h.

105{VP1Msg::messageVerbose("You should not call this function directly, but one of its implementations in derived classes..."); return false; };

◆ lastOfActiveSystemsRefreshed()

void IVP1ChannelWidget::lastOfActiveSystemsRefreshed ( )
protectedvirtualinherited

Reimplemented in IVP13DStandardChannelWidget.

Definition at line 334 of file IVP1ChannelWidget.cxx.

335{
336 VP1Msg::messageVerbose("IVP1ChannelWidget base lastOfActiveSystemsRefreshed called");
337}

◆ message

void IVP1ChannelWidget::message ( QString )
signalinherited

◆ name()

const QString & IVP1ChannelWidget::name ( ) const
inherited

Definition at line 180 of file IVP1ChannelWidget.cxx.

181{
182 return m_d->name;
183}

◆ registerController()

void IVP1ChannelWidget::registerController ( QWidget * w)
protectedinherited

Definition at line 210 of file IVP1ChannelWidget.cxx.

211{
212 assert(m_d->canregistercontroller&&"Please only register controllers during create()");
213 assert(m_d->state==CONSTRUCTED);
214 assert(w&&"IVP1ChannelWidget::registerController(...) called with null pointer!!");
215 assert(!m_d->controller&&"IVP1ChannelWidget::registerController(...) called twice!!");
216 m_d->controller = w;
217 w->setParent(0);
218}

◆ registerSystem()

void IVP1ChannelWidget::registerSystem ( IVP1System * s)
protectedinherited

Definition at line 221 of file IVP1ChannelWidget.cxx.

222{
223 assert(m_d->canregistersystem&&"Please only register systems during the channel constructor");
224 assert(m_d->state==CONSTRUCTED);
225 assert(m_d->systems.find(s)==m_d->systems.end()&&"IVP1ChannelWidget::registerSystem(...) called twice on the same system!!");
226 m_d->systems.insert(s);
227 s->setChannel(this);
228}

◆ restoreFromState()

void IVP1ChannelWidget::restoreFromState ( QByteArray ba)
virtualinherited

Reimplemented in IVP12DDetViewsChannelWidget, IVP12DStandardChannelWidget, IVP13DChannelWidget, and IVP13DStandardChannelWidget.

Definition at line 326 of file IVP1ChannelWidget.cxx.

327{
328 VP1Msg::messageVerbose("IVP1ChannelWidget base restoreFromState called");
329 if (!ba.isEmpty())
330 message("Error in IVP1System::restoreFromState: Received non-empty saved state.");
331}

◆ saveState()

QByteArray IVP1ChannelWidget::saveState ( )
virtualinherited

Reimplemented in IVP12DDetViewsChannelWidget, IVP12DStandardChannelWidget, IVP13DChannelWidget, and IVP13DStandardChannelWidget.

Definition at line 320 of file IVP1ChannelWidget.cxx.

320 {
321 VP1Msg::messageVerbose("IVP1ChannelWidget base saveState called");
322 return QByteArray();
323}

◆ setAntiAliasing()

virtual bool IVP1ChannelWidget::setAntiAliasing ( bool aa)
inlinevirtualinherited

Reimplemented in IVP13DStandardChannelWidget.

Definition at line 104 of file IVP1ChannelWidget.h.

104{VP1Msg::messageVerbose("You should not call this function directly, but one of its implementations in derived classes..."); return aa; };

◆ setCanRegister()

void IVP1ChannelWidget::setCanRegister ( const bool & controller,
const bool & system )
privateinherited

Definition at line 299 of file IVP1ChannelWidget.cxx.

300{
301 m_d->canregistercontroller=c;
302 m_d->canregistersystem=s;
303}

◆ setCloneID()

void IVP1ChannelWidget::setCloneID ( unsigned id)
privateinherited

Definition at line 203 of file IVP1ChannelWidget.cxx.

204{
205 m_d->cloneid=id;
207}
void uniqueNameChanged(const QString &)
const QString unique_name() const

◆ setEvtTimestamp()

void IVP1ChannelWidget::setEvtTimestamp ( unsigned timestamp)
protectedinherited

Definition at line 96 of file IVP1ChannelWidget.cxx.

97{
98 m_d->timestamp = timestamp;
99}

◆ setRunEvtNumber()

void IVP1ChannelWidget::setRunEvtNumber ( int runnumber,
unsigned long long eventnumber )
inherited

Definition at line 89 of file IVP1ChannelWidget.cxx.

90{
91 m_d->runnumber = runnumber;
92 m_d->eventnumber = eventnumber;
93}

◆ setState()

void IVP1ChannelWidget::setState ( const State & s)
privateinherited

Definition at line 108 of file IVP1ChannelWidget.cxx.

109{
110
111#ifndef NDEBUG
112 assert(s!=CONSTRUCTED);
113 if (s==READY) {
114 assert(m_d->state==CONSTRUCTED);
115 }
116 if (s==UNCREATED) {
117 assert(m_d->state==READY);
118 }
119#endif
120 m_d->state = s;
121}

◆ state()

IVP1ChannelWidget::State IVP1ChannelWidget::state ( ) const
privateinherited

Definition at line 102 of file IVP1ChannelWidget.cxx.

103{
104 return m_d->state;
105}

◆ str() [1/30]

QString VP1String::str ( const Amg::Vector3D & t)
inlinestaticinherited

Definition at line 98 of file VP1String.h.

98{ return "("+str(t.x())+", "+str(t.y())+", "+str(t.z())+")"; }
static QString str(const QString &s)
Definition VP1String.h:49

◆ str() [2/30]

QString VP1String::str ( const bool b)
inlinestaticinherited

Definition at line 53 of file VP1String.h.

53{ return b?"True":"False"; }

◆ str() [3/30]

QString VP1String::str ( const char * c)
inlinestaticinherited

Definition at line 50 of file VP1String.h.

50{ return c; }

◆ str() [4/30]

QString VP1String::str ( const double & d)
inlinestaticinherited

Definition at line 81 of file VP1String.h.

81{ return QString::number(d); }

◆ str() [5/30]

QString VP1String::str ( const float & f)
inlinestaticinherited

Definition at line 82 of file VP1String.h.

82{ return QString::number(f); }

◆ str() [6/30]

template<class T>
QString VP1String::str ( const HepGeom::BasicVector3D< T > & t)
inlinestaticinherited

Definition at line 95 of file VP1String.h.

95{ return "("+str(t.x())+", "+str(t.y())+", "+str(t.z())+")"; }

◆ str() [7/30]

QString VP1String::str ( const QColor & c)
staticinherited

Definition at line 30 of file VP1String.cxx.

31{
32 return c.isValid() ? c.name() : "Invalid";
33}

◆ str() [8/30]

template<class T>
QString VP1String::str ( const QFlags< T > & f)
inlinestaticinherited

Definition at line 91 of file VP1String.h.

91{ return "0x"+QString::number(f, 16).toUpper().rightJustified(8,'0'); }

◆ str() [9/30]

template<class T>
QString VP1String::str ( const QList< T > & t)
inlinestaticinherited

Definition at line 102 of file VP1String.h.

102{ return "QList of size"+QString::number(t.size()); }

◆ str() [10/30]

QString VP1String::str ( const QString & s)
inlinestaticinherited

Definition at line 49 of file VP1String.h.

49{ return s; }

◆ str() [11/30]

QString VP1String::str ( const SbColor & c)
staticinherited

Definition at line 36 of file VP1String.cxx.

37{
39}
static QColor sbcol2qcol(const SbColor &)

◆ str() [12/30]

QString VP1String::str ( const SbVec2d & v)
staticinherited

Definition at line 61 of file VP1String.cxx.

61{ double x,y; v.getValue(x,y); return "("+str(x)+", "+str(y)+")"; }
#define y
#define x

◆ str() [13/30]

QString VP1String::str ( const SbVec2f & v)
staticinherited

Definition at line 62 of file VP1String.cxx.

62{ float x,y; v.getValue(x,y); return "("+str(x)+", "+str(y)+")"; }

◆ str() [14/30]

QString VP1String::str ( const SbVec2s & v)
staticinherited

Definition at line 63 of file VP1String.cxx.

63{ short x,y; v.getValue(x,y); return "("+str(x)+", "+str(y)+")"; }

◆ str() [15/30]

QString VP1String::str ( const SbVec3d & v)
staticinherited

Definition at line 64 of file VP1String.cxx.

64{ double x,y,z; v.getValue(x,y,z); return "("+str(x)+", "+str(y)+", "+str(z)+")"; }
#define z

◆ str() [16/30]

QString VP1String::str ( const SbVec3f & v)
staticinherited

Definition at line 65 of file VP1String.cxx.

65{ float x,y,z; v.getValue(x,y,z); return "("+str(x)+", "+str(y)+", "+str(z)+")"; }

◆ str() [17/30]

QString VP1String::str ( const SbVec3s & v)
staticinherited

Definition at line 66 of file VP1String.cxx.

66{ short x,y,z; v.getValue(x,y,z); return "("+str(x)+", "+str(y)+", "+str(z)+")"; }

◆ str() [18/30]

QString VP1String::str ( const SbVec4d & v)
staticinherited

Definition at line 67 of file VP1String.cxx.

67{ double x,y,z,t; v.getValue(x,y,z,t); return "("+str(x)+", "+str(y)+", "+str(z)+", "+str(t)+")"; }

◆ str() [19/30]

QString VP1String::str ( const SbVec4f & v)
staticinherited

Definition at line 68 of file VP1String.cxx.

68{ float x,y,z,t; v.getValue(x,y,z,t); return "("+str(x)+", "+str(y)+", "+str(z)+", "+str(t)+")"; }

◆ str() [20/30]

template<class T>
QString VP1String::str ( const T * t)
inlinestaticinherited

Definition at line 87 of file VP1String.h.

87{ return str(static_cast<const void* >(t)); }

◆ str() [21/30]

QString VP1String::str ( const void * p)
staticinherited

Definition at line 48 of file VP1String.cxx.

49{
50 if (p) {
51 std::ostringstream s;
52 s << p;
53 // Explicitly naming QString here avoids a cppcheck warning.
54 return QString (s.str().c_str());
55 } else {
56 return "NULL";
57 }
58}

◆ str() [22/30]

QString VP1String::str ( const VP1Interval & i)
staticinherited

Definition at line 42 of file VP1String.cxx.

43{
44 return i.toString();
45}

◆ str() [23/30]

QString VP1String::str ( int n)
inlinestaticinherited

Definition at line 77 of file VP1String.h.

77{ return QString::number(n); }

◆ str() [24/30]

QString VP1String::str ( long n)
inlinestaticinherited

Definition at line 75 of file VP1String.h.

75{ return QString::number(n); }

◆ str() [25/30]

QString VP1String::str ( qlonglong n)
inlinestaticinherited

Definition at line 79 of file VP1String.h.

79{ return QString::number(n); }

◆ str() [26/30]

QString VP1String::str ( qulonglong n)
inlinestaticinherited

Definition at line 80 of file VP1String.h.

80{ return QString::number(n); }

◆ str() [27/30]

QString VP1String::str ( short int n)
inlinestaticinherited

Definition at line 73 of file VP1String.h.

73{ return QString::number(n); }

◆ str() [28/30]

QString VP1String::str ( uint n)
inlinestaticinherited

Definition at line 78 of file VP1String.h.

78{ return QString::number(n); }

◆ str() [29/30]

QString VP1String::str ( ulong n)
inlinestaticinherited

Definition at line 76 of file VP1String.h.

76{ return QString::number(n); }

◆ str() [30/30]

QString VP1String::str ( unsigned short int n)
inlinestaticinherited

Definition at line 74 of file VP1String.h.

74{ return QString::number(n); }

◆ systemErased()

void VP1TriggerDecisionChannel::systemErased ( IVP1System * )
virtual

Reimplemented from IVP1ChannelWidget.

Definition at line 90 of file VP1TriggerDecisionChannel.cxx.

91{
92 clearAll();
93}

◆ systemRefreshed()

void VP1TriggerDecisionChannel::systemRefreshed ( IVP1System * )
virtual

Reimplemented from IVP1ChannelWidget.

Definition at line 96 of file VP1TriggerDecisionChannel.cxx.

97{
98
99}

◆ systemRefreshInfoChanged

void IVP1ChannelWidget::systemRefreshInfoChanged ( QString sysrefreshing,
int nsysOn,
int nsysOnRefreshed )
signalinherited

◆ systems()

const std::set< IVP1System * > & IVP1ChannelWidget::systems ( )
privateinherited

Definition at line 231 of file IVP1ChannelWidget.cxx.

232{
233 return m_d->systems;
234}

◆ turnOff()

void IVP1ChannelWidget::turnOff ( IVP1System * s,
const bool & immediateErase = true )
protectedinherited

Definition at line 246 of file IVP1ChannelWidget.cxx.

247{
248 assert(s->channel()==this);
249 assert(m_d->systems.find(s)!=m_d->systems.end());
250 s->setActiveState(IVP1System::OFF,!immediateErase);
252}

◆ turnOn()

void IVP1ChannelWidget::turnOn ( IVP1System * s)
protectedinherited

Definition at line 237 of file IVP1ChannelWidget.cxx.

238{
239 assert(s->channel()==this);
240 assert(m_d->systems.find(s)!=m_d->systems.end());
241 s->setActiveState(IVP1System::ON);
243}

◆ type()

Type VP1TriggerDecisionChannel::type ( ) const
inlinevirtual

Implements IVP1ChannelWidget.

Definition at line 34 of file VP1TriggerDecisionChannel.h.

34{ return NUMBERS; };

◆ uncreate()

void IVP1ChannelWidget::uncreate ( )
protectedvirtualinherited

Definition at line 155 of file IVP1ChannelWidget.cxx.

156{
157 assert(m_d->state==READY);
158}

◆ unique_name()

const QString IVP1ChannelWidget::unique_name ( ) const
inherited

Definition at line 175 of file IVP1ChannelWidget.cxx.

176{
177 return m_d->name+(m_d->cloneid?" ["+QString::number(m_d->cloneid)+"]":QString(""));//Fixme: make sure that it is forbidden to end a name with ' [.*]'!
178}

◆ uniqueNameChanged

void IVP1ChannelWidget::uniqueNameChanged ( const QString & )
signalinherited

Member Data Documentation

◆ m_d

Imp* IVP1ChannelWidget::m_d
privateinherited

Definition at line 120 of file IVP1ChannelWidget.h.

◆ m_tableWidget

QTableWidget* VP1TriggerDecisionChannel::m_tableWidget
private

Definition at line 44 of file VP1TriggerDecisionChannel.h.

◆ m_trigdecsystem

std::unique_ptr<VP1TriggerDecisionSystem> VP1TriggerDecisionChannel::m_trigdecsystem
private

Definition at line 46 of file VP1TriggerDecisionChannel.h.


The documentation for this class was generated from the following files: