84 MsgStream log(
msgSvc(), name());
85 log << MSG::INFO <<
" EventWriter initialize()" << endreq;
94 StatusCode status = serviceLocator()->service(
"RootCnvSvc", isvc,
false);
96 if ( !status.isSuccess() ) status = serviceLocator()->service(
"EventCnvSvc", isvc,
true);
98 if ( status.isSuccess() ) {
105 status = serviceLocator()->service(
"EventCnvSvc", m_pConversionSvc,
true);
106 if ( !status.isSuccess() ) {
107 log << MSG::FATAL <<
"Unable to locate IConversionSvc interface"
113 status = serviceLocator()->service(
"EventDataSvc", m_pDataProvider,
true);
114 if ( !status.isSuccess() ) {
115 log << MSG::FATAL <<
"Unable to locate IDataProviderSvc interface"
123 m_single_outputFiles =
new TFile(m_dofileName.c_str(),
"RECREATE");
124 if(m_single_outputFiles->IsZombie()||(!m_single_outputFiles->IsWritable())){
125 std::cout<<
"EventWriter ERROR::Can't not open file"<<m_dofileName.c_str()<<std::endl;
129 m_single_outputTrees =
new TTree(
"Event",
"Event");
130 m_jobInfoTree =
new TTree(
"JobInfoTree",
"Job info");
133 else if ( m_mode == 3 ) {
137 m_bufsize = 512*1024;
138 m_cbuf =
new char[m_bufsize];
140 m_writer->writeEvent((
void*)&code, 4);
143 log << MSG::FATAL <<
"Unvalid RunMode @ initialize(): " << m_mode << endreq;
148 if ( !status.isSuccess() ) {
149 log << MSG::FATAL <<
"can not getSvc" << endreq;
154 return StatusCode::SUCCESS;
180 MsgStream log(
msgSvc(), name());
181 log << MSG::INFO <<
"EventWriter execute()" << endreq;
186 if(m_common.m_rectrackEvt) m_single_outputTrees->Branch(
"TRecEvent",
"TRecTrackEvent",&m_common.m_rectrackEvt,3200000,1);
187 if(m_common.m_evtRecObject) m_single_outputTrees->Branch(
"TEvtRecObject",
"TEvtRecObject",&m_common.m_evtRecObject,3200000,1);
188 if(m_common.m_dstEvt) m_single_outputTrees->Branch(
"TDstEvent",
"TDstEvent",&m_common.m_dstEvt,3200000,1);
189 if(m_common.m_recEvt) m_single_outputTrees->Branch(
"TDigiEvent",
"TDigiEvent",&m_common.m_recEvt,3200000,1);
190 if(m_common.m_EvtHeader) m_single_outputTrees->Branch(
"TEvtHeader",
"TEvtHeader",&m_common.m_EvtHeader,3200000,1);
191 if(m_common.m_EvtNavigator) m_single_outputTrees->Branch(
"TEvtNavigator",
"TEvtNavigator",&m_common.m_EvtNavigator,3200000,1);
192 if(m_common.m_hltEvt) m_single_outputTrees->Branch(
"THltEvent",
"THltEvent",&m_common.m_hltEvt,3200000,1);
193 if(m_common.m_mcEvt) m_single_outputTrees->Branch(
"TMcEvent",
"TMcEvent",&m_common.m_mcEvt,3200000,1);
194 if(m_common.m_trigEvt) m_single_outputTrees->Branch(
"TTrigEvent",
"TTrigEvent",&m_common.m_trigEvt,3200000,1);
195 m_jobInfoTree->Branch(
"JobInfo",&jobInfo);
199 if(m_single_outputFiles->IsZombie()||(!m_single_outputFiles->IsOpen())){
200 std::cout<<
"EventWriter ERROR::The ROOT File:"<<m_dofileName.c_str()<<
"status is false"<<std::endl;
203 int nb = m_single_outputTrees->Fill();
206 log << MSG::FATAL <<
"Error in fill tree (EventWriter) "<<m_single_outputTrees->GetName() <<
" with "<<nb<<
" bytes" <<endreq;
210 m_single_outputFiles = m_single_outputTrees->GetCurrentFile();
212 else if ( m_mode == 3 ) {
213 m_TFullEvt->setEvtHeader(m_common.m_EvtHeader);
214 m_TFullEvt->setDigiEvent(m_common.m_recEvt);
215 m_TFullEvt->setDstEvent(m_common.m_dstEvt);
216 m_TFullEvt->setMcEvent(m_common.m_mcEvt);
217 m_TFullEvt->setTrigEvent(m_common.m_trigEvt);
218 m_TFullEvt->setHltEvent(m_common.m_hltEvt);
219 m_TFullEvt->setRecTrackEvent(m_common.m_rectrackEvt);
220 m_TFullEvt->setEvtRecObject(m_common.m_evtRecObject);
223 TBufferFile m_TBuffer(TBufferFile::kWrite, m_bufsize-12, m_cbuf+4,
false);
224 m_TBuffer.WriteObject(m_TFullEvt);
225 if ( m_TBuffer.Buffer() != (m_cbuf+4) ) {
226 m_bufsize = m_TBuffer.Length() + 12;
227 m_cbuf =
new char[m_bufsize];
228 memcpy(m_cbuf+4, m_TBuffer.Buffer(), m_TBuffer.Length());
229 m_TBuffer.SetBit(TBuffer::kIsOwner);
231 *((
int*)m_cbuf) = m_common.m_EvtHeader->getEventId();
232 m_writer->writeEvent( (
void*)m_cbuf, m_TBuffer.Length()+4 );
239 return StatusCode::SUCCESS;
324 MsgStream log(
msgSvc(), name());
326 std::cout<<
"11111111111111111111111111"<<std::endl;
329 m_bossVer = getenv(
"BES_RELEASE");
330 log << MSG::INFO <<
"fill boss version: "<<m_bossVer << endreq;
332 string tmpJobOptions = getJobOptions();
333 m_jobOptions.push_back( tmpJobOptions );
335 if(m_decayOptions.size()==0)
336 m_decayOptions = getDecayOptions();
338 jobInfo->setBossVer(m_bossVer);
339 jobInfo->setJobOptions(m_jobOptions);
340 jobInfo->setDecayOptions(m_decayOptions);
342 m_jobInfoTree->Fill();
344 st = m_single_outputFiles->Write();
347 log << MSG::FATAL <<
"can not write to the file "<<m_dofileName.c_str()<<endreq;
350 m_single_outputFiles->Close();
352 delete m_single_outputFiles;
358 m_writer->writeEvent((
void*)&code, 4);
364 log << MSG::INFO <<
"EventWriter finalize()" << endreq;
365 return StatusCode::SUCCESS;