#include <DQSpillServer.h>
Public Member Functions | |
| DQSpillServer () | |
| DQSpillServer (const DQSpillServer &rhs) | |
| ~DQSpillServer () | |
| void | Process (RawSpillServerMonitorBlock *rdb) |
| Int_t | GetTime () const |
| Int_t | GetSpillStatus () const |
| Int_t | GetSpillType () const |
| Int_t | GetSpillTimeError () const |
Private Member Functions | |
| ClassDef (DQSpillServer, 1) | |
Private Attributes | |
| Int_t | fTime |
| Int_t | fSpillStatus |
| Int_t | fSpillType |
| Int_t | fSpillTimeError |
|
|
Definition at line 13 of file DQSpillServer.cxx. 00013 : 00014 fTime(-1), 00015 fSpillStatus(-1), 00016 fSpillType(-1), 00017 fSpillTimeError(-1) 00018 { 00019 00020 }
|
|
|
Definition at line 22 of file DQSpillServer.cxx. 00022 :
00023 TObject(rhs)
00024 {
00025
00026 }
|
|
|
Definition at line 28 of file DQSpillServer.cxx. 00029 {
00030
00031 }
|
|
||||||||||||
|
|
|
|
Definition at line 56 of file DQSpillServer.cxx. Referenced by AlgDataQuality::RunAlg(). 00057 {
00058 return fSpillStatus;
00059 }
|
|
|
Definition at line 66 of file DQSpillServer.cxx. Referenced by AlgDataQuality::RunAlg(). 00067 {
00068 return fSpillTimeError;
00069 }
|
|
|
Definition at line 61 of file DQSpillServer.cxx. Referenced by AlgDataQuality::RunAlg(). 00062 {
00063 return fSpillType;
00064 }
|
|
|
Definition at line 51 of file DQSpillServer.cxx. Referenced by AlgDataQuality::RunAlg(). 00052 {
00053 return fTime;
00054 }
|
|
|
Definition at line 33 of file DQSpillServer.cxx. References fSpillStatus, fSpillTimeError, fSpillType, fTime, RawSpillServerMonitorBlock::GetSpillData(), RawSpillServerMonitorBlock::GetTimeStamp(), mdSpillData_t::isKnown, mdSpillData_t::isSpill, MSG, and mdSpillData_t::spillTimeError_nsec. Referenced by DataQualityReader::ProcessBlock(). 00034 {
00035 MSG("DataQuality",Msg::kVerbose) << " DQSpillServer::Process(RawSpillServerMonitorBlock) " << endl;
00036
00037 fTime=((VldTimeStamp)(rdb->GetTimeStamp())).GetSec();
00038
00039 const mdSpillData_t& spilldata = rdb->GetSpillData();
00040 fSpillStatus = spilldata.isKnown;
00041 fSpillType = spilldata.isSpill;
00042 fSpillTimeError = spilldata.spillTimeError_nsec;
00043
00044 MSG("DataQuality",Msg::kVerbose) << " Time=" << fTime << endl;
00045 MSG("DataQuality",Msg::kVerbose) << " SpillStatus=" << fSpillStatus << endl;
00046 MSG("DataQuality",Msg::kVerbose) << " SpillType=" << fSpillType << endl;
00047 MSG("DataQuality",Msg::kVerbose) << " SpillTimeError=" << fSpillTimeError << endl;
00048
00049 }
|
|
|
Definition at line 27 of file DQSpillServer.h. Referenced by Process(). |
|
|
Definition at line 29 of file DQSpillServer.h. Referenced by Process(). |
|
|
Definition at line 28 of file DQSpillServer.h. Referenced by Process(). |
|
|
Definition at line 26 of file DQSpillServer.h. Referenced by Process(). |
1.3.9.1