BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
PackedRawDataCnvSvc.cxx
Go to the documentation of this file.
1//====================================================================
2// PackedRawDataCnvSvc.cpp
3//--------------------------------------------------------------------
4//
5// Package : AsciiFile Conversion Service
6//
7//====================================================================
8
9static const char* rcsid = "$Id: PackedRawDataCnvSvc.cxx,v 1.24 2012/12/16 07:23:10 zoujh Exp $";
10
11// Include files
12#include "GaudiKernel/MsgStream.h"
13#include "GaudiKernel/ConversionSvc.h"
14#include "GaudiKernel/ISvcLocator.h"
15#include "GaudiKernel/SmartDataPtr.h"
16
20
43
44using namespace std;
45
46static const InterfaceID IID_IRawDataBaseCnv("IRawDataBaseCnv", 1 , 0);
47
48/// Standard constructor
49PackedRawDataCnvSvc::PackedRawDataCnvSvc(const std::string& name, ISvcLocator* svc)
51{
52 declareProperty("RawDataOutputSvc", m_ioSvcName);
53 declareProperty("Status", m_status=0xFFFFFFFF); //fucd
54}
55
56/// Standard Destructor
58{}
59
60/// Initialize the service.
62 MsgStream log(messageService(), name());
63 log << MSG::INFO << name() << " PackedRawDataCnvSvc::initialize RawDataOutputSvc:" << m_ioSvcName<< endreq;
64
65 StatusCode sc = RawDataCnvSvc::initialize();
66 if( sc.isFailure() ) {
67 log << MSG::ERROR << "Unable to initialize service " << endreq;
68 return sc;
69 }
70
71 IService* svc ;
72 sc = service(m_ioSvcName, svc);
73 if (sc != StatusCode::SUCCESS ) {
74 log << MSG::WARNING << "Cant get RawDataOutputSvc " << endreq;
75 //return sc ;
76 }
77
78 m_ioSvc = dynamic_cast<IRawDataOutputSvc*> (svc);
79 if (m_ioSvc == 0 ) {
80 log << MSG::WARNING << "Cant cast to RawDataOutputSvc " << endreq;
81 //return StatusCode::FAILURE;
82 }
83
84 return StatusCode::SUCCESS;
85}
86
87/// Add converters to the service
89 MsgStream log(messageService(), name());
90 //log << MSG::INFO << name() << " PackedRawDataCnvSvc::addConverters" << endreq;
91 declareObject(IRawDataCnvSvc::Leaf(EventModel::EventH, RawDataCnv::classID(), "PASS", 0));
92 //log << MSG::INFO << "EventModel::EventH " << RawDataCnv::classID() << endreq;
93 declareObject(IRawDataCnvSvc::Leaf(EventModel::EventHeader, RawDataEvtHeaderCnv::classID(), "PASS", 0));
94 //log << MSG::INFO << "EventModel::EventHeader " << RawDataEvtHeaderCnv::classID() << endreq;
112
113 return StatusCode::SUCCESS;
114}
115
116/// Update state of the service
117StatusCode PackedRawDataCnvSvc::updateServiceState(IOpaqueAddress* pAddress) {
118 MsgStream log(messageService(), name());
119 StatusCode sc = RawDataCnvSvc::updateServiceState(pAddress);
120 //log << MSG::INFO << "In PackedRawDataCnvSvc::updateServiceState" << endreq;
121 return sc;
122}
123
124StatusCode PackedRawDataCnvSvc::queryInterface(const InterfaceID& riid, void** ppvInterface) {
125 if ( IID_IRawDataBaseCnv == riid ) {
126 *ppvInterface = (IRawDataCnvSvc*)this;
127 } else {
128 // Interface is not directly availible: try out a base class
129 return ConversionSvc::queryInterface(riid, ppvInterface);
130 }
131 addRef();
132 return StatusCode::SUCCESS;
133}
134
135StatusCode PackedRawDataCnvSvc::connectOutput(const std::string& /* t */)
136{
137
138 MsgStream log(messageService(), name() );
139
140 log << MSG::DEBUG << " In connectOutput "<< endreq;
141
142 // Get DataObj from TDS
143 SmartDataPtr<Event::EventHeader> evt(dataProvider(), EventModel::EventHeader);
144 if (!evt) {
145 log << MSG::ERROR << "Did not retrieve event" << endreq;
146 return StatusCode::FAILURE;
147 }
148 unsigned int eventNo = evt->eventNumber();
149 unsigned int runNo = evt->runNumber();
150
151 m_rawEvent = new WriteRawEvent(0x790000, // source_id
152 eventNo, // global_id
153 runNo, // run_no
154 eventNo, // lel1_id
155 0, // lel1_type
156 0, // lel2_info
157 ef_info // ef_info
158 );
159 //const unsigned int status = 0; // place holder for status
160 if(m_status!=0xFFFFFFFF) m_rawEvent->status(1, &m_status);
161 else m_rawEvent->status(0, NULL); //fucd
162
163 return StatusCode::SUCCESS;
164}
165
166StatusCode PackedRawDataCnvSvc::commitOutput(const std::string& /* t*/ , bool /*b*/ )
167{
168 MsgStream log(messageService(), name() );
169
170 log << MSG::DEBUG << "In flushOutput" << endreq;
171
172 if (!m_ioSvc) {
173 log << MSG::ERROR << "RawDataCnvSvc not configure for output" << endreq;
174 return StatusCode::FAILURE;
175 }
176
177 /*if (!m_rawEvent->is_valid()) {
178 log << MSG::ERROR << "commitOutput failed, because FullEventFragment invalid"
179 << m_rawEvent << endreq;
180 return StatusCode::FAILURE;
181 }*/
182
183 log << MSG::DEBUG << "commitOutput: Size of Event (words) ="
184 << m_rawEvent->size_word() << endreq;
185
186 if (!m_ioSvc->putEvent(m_rawEvent) ) {
187 log << MSG::ERROR << "commitOutput failed to send output" << endreq;
188 return StatusCode::FAILURE;
189 }
190
191 // delete ...
192 const eformat::write::SubDetectorFragment* sd = m_rawEvent->first_child();
193 while ( sd != 0) {
194 const eformat::write::ROSFragment* ros = sd->first_child();
195 while (ros != 0) {
196 const eformat::write::ROBFragment* rob = ros->first_child();
197 while (rob != 0) {
198 const eformat::write::ROBFragment* rob_tmp = rob;
199 rob = rob->next();
200 delete rob_tmp;
201 }
202 const eformat::write::ROSFragment* ros_tmp = ros;
203 ros = ros->next();
204 delete ros_tmp;
205 }
206 const eformat::write::SubDetectorFragment* sd_tmp = sd;
207 sd = sd->next();
208 delete sd_tmp;
209 }
210 delete m_rawEvent;
211
212 return StatusCode::SUCCESS;
213}
214
unsigned const long PACKEDRAWEVENT_StorageType
Definition: ClassID_temp.h:17
int runNo
Definition: DQA_TO_DB.cxx:12
int eventNo
eformat::write::FullEventFragment WriteRawEvent
Definition: RawEvent.h:9
#define NULL
The event conversion service needs an additional interface used by the converters to declare their ob...
virtual bool putEvent(WriteRawEvent *re)=0
PackedRawDataCnvSvc(const std::string &name, ISvcLocator *svc)
Standard Constructor.
virtual StatusCode commitOutput(const std::string &t, bool b)
virtual StatusCode queryInterface(const InterfaceID &riid, void **ppvInterface)
Override inherited queryInterface.
virtual StatusCode initialize()
Initialize the service.
virtual StatusCode connectOutput(const std::string &t)
virtual StatusCode addConverters()
Add converters to the service.
virtual ~PackedRawDataCnvSvc()
Standard Destructor.
virtual StatusCode updateServiceState(IOpaqueAddress *pAddress)
Update state of the service.
StatusCode updateServiceState(IOpaqueAddress *pAddress)
Update state of the service.
virtual StatusCode initialize()
virtual StatusCode declareObject(const IRawDataCnvSvc::Leaf &leaf)
Associates a path on TDS with a particular converter.
static const CLID & classID()
Definition: RawDataCnv.cxx:85
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
static const CLID & classID()
void status(uint32_t n, const uint32_t *status)
const SubDetectorFragment * first_child(void) const
void next(const ROBFragment *n)
const ROSFragment * next(void) const
const ROBFragment * first_child(void) const
const ROSFragment * first_child(void) const
const SubDetectorFragment * next(void) const
_EXTERN_ std::string Event
Definition: EventModel.h:56
_EXTERN_ std::string MdcDigiCol
Definition: EventModel.h:57
_EXTERN_ std::string MucDigiCol
Definition: EventModel.h:60
_EXTERN_ std::string LumiDigiCol
Definition: EventModel.h:61
_EXTERN_ std::string EmcDigiCol
Definition: EventModel.h:58
_EXTERN_ std::string TofDigiCol
Definition: EventModel.h:59
_EXTERN_ std::string Event
Definition: EventModel.h:72
_EXTERN_ std::string HltRawCol
Definition: EventModel.h:73
_EXTERN_ std::string EmcMcHitCol
Definition: EventModel.h:46
_EXTERN_ std::string MucMcHitCol
Definition: EventModel.h:47
_EXTERN_ std::string MdcMcHitCol
Definition: EventModel.h:44
_EXTERN_ std::string TofMcHitCol
Definition: EventModel.h:45
_EXTERN_ std::string McParticleCol
Definition: EventModel.h:41
_EXTERN_ std::string Event
Definition: EventModel.h:39
_EXTERN_ std::string Event
Definition: EventModel.h:66
_EXTERN_ std::string TrigGTDCol
Definition: EventModel.h:67
_EXTERN_ std::string ZddEvent
Definition: EventModel.h:80