|
Gaudi Framework, version v21r4 |
| Home | Generated: 7 Sep 2009 |
#include <RecordStream.h>


Definition at line 14 of file RecordStream.h.
Public Member Functions | |
| RecordStream (const std::string &nam, ISvcLocator *svc) | |
| Standard algorithm Constructor. | |
| virtual | ~RecordStream () |
| Standard Destructor. | |
| virtual StatusCode | finalize () |
| Algorithm overload: finalization. | |
| virtual StatusCode | execute () |
| Runrecords do not get written for each event: Event processing hence dummy.... | |
| RecordStream::RecordStream | ( | const std::string & | nam, | |
| ISvcLocator * | svc | |||
| ) | [inline] |
Standard algorithm Constructor.
Definition at line 17 of file RecordStream.h.
00017 : OutputStream(nam,svc) {}
| virtual RecordStream::~RecordStream | ( | ) | [inline, virtual] |
| StatusCode RecordStream::finalize | ( | void | ) | [virtual] |
Algorithm overload: finalization.
Reimplemented from OutputStream.
Definition at line 18 of file RecordStream.cpp.
00018 { 00019 MsgStream log(msgSvc(), name()); 00020 log << MSG::INFO << "Set up File Summary Record" << endmsg; 00021 StatusCode sc = OutputStream::execute(); 00022 if( !sc.isSuccess() ) { 00023 log << MSG::WARNING << "Error writing run summary record....." << endmsg; 00024 } 00025 return OutputStream::finalize(); 00026 }
| virtual StatusCode RecordStream::execute | ( | ) | [inline, virtual] |
Runrecords do not get written for each event: Event processing hence dummy....
Reimplemented from OutputStream.
Definition at line 23 of file RecordStream.h.
00023 { return StatusCode::SUCCESS; }