/search.css" rel="stylesheet" type="text/css"/> /search.js">
#include "DybArchiveOutput.h"
#include "DybKernel/EventStoreIncident.h"
#include "Event/HeaderObject.h"
#include "GaudiKernel/DataSvc.h"
#include "GaudiKernel/IIncidentSvc.h"
#include <sstream>
Go to the source code of this file.
Functions | |
static std::string | dostr (const DataObject *obj) |
static std::string dostr | ( | const DataObject * | obj | ) | [static] |
Definition at line 53 of file DybArchiveOutput.cc.
{ std::stringstream ss; ss << obj->name() << ": refCount=" << obj->refCount(); const TemporalDataObject* tdo = dynamic_cast<const TemporalDataObject*>(obj); if (!tdo) { return ss.str(); } ss << " time:" << tdo->earliest() << " --> " << tdo->latest(); const HeaderObject* ho = dynamic_cast<const HeaderObject*>(tdo); if (!ho) { return ss.str(); } ss << " execNumber=" << ho->execNumber(); return ss.str(); }