|
ATLAS Offline Software
|
Go to the documentation of this file.
16 , m_isBlobOwner(false),m_sizeOfObj(0),m_nChans(0),m_nGains(0), m_pDataStart(nullptr)
53 , m_isBlobOwner(true),
54 m_sizeOfObj(
other.getObjSizeUint32()),
55 m_nChans(
other.getNChans()),
56 m_nGains(
other.getNChans()),
57 m_pDataStart(static_cast<
const void*>(getBlobStart()+getHdrSize()))
67 if(&
other ==
this) {
return *
this;}
102 commentSizeChar += (commentSizeChar %
sizeof(
uint32_t)) ?
107 const uint32_t blobSizeInBytes = dataSizeByte+commentSizeChar;
126 char* pChar =
reinterpret_cast<char*
>(++pTimeStamp);
127 std::string::const_iterator iStr =
author.begin();
128 for(; iStr!=
author.end(); ++iStr){ *pChar = *iStr; ++pChar; }
130 for(iStr=
comment.begin(); iStr!=
comment.end(); ++iStr){ *(++pChar) = *iStr; }
135 return (blobSizeInBytes/
sizeof(
uint32_t));
147 return 0x80000000 | (
gain << 24) | nChans;
151 if (gainAndnChans & 0x80000000) {
153 return (gainAndnChans>>24) & 0x7F;
157 return (gainAndnChans>>16) & 0xFFFF;
161 if (gainAndnChans & 0x80000000) {
163 return gainAndnChans & 0xFFFFFF;
167 return gainAndnChans & 0xFFFF;
183 return std::string(iBeg);
199 return std::string(++iBeg);
212 while(*iEnd!=
'\n'){++iEnd;}
213 return std::string(iBeg,iEnd-iBeg);
232 stm <<
"ObjType : " <<
getObjType() << std::endl;
235 stm <<
"NObjs : " <<
getNObjs() << std::endl;
236 stm <<
"NChannels : " <<
getNChans() << std::endl;
237 stm <<
"NGains : " <<
getNGains() << std::endl;
239 stm <<
"=== No comment available ===" << std::endl;
242 stm <<
"Author : " <<
getAuthor() << std::endl;
244 stm <<
"Comment: : " <<
getComment() << std::endl;
uint32_t getCommentSizeUint32() const
Returns the space occupied by the comment fields in units of uint32_t.
bool m_isBlobOwner
Do I own the BLOB?
static uint32_t packGainAndNchans(const uint32_t gain, const uint32_t nChans)
uint32_t getObjSizeUint32() const
Returns the size of a data object in units of uint32_t.
std::string getAuthor() const
Returns the comment author.
std::string find(const std::string &s)
return a remapped string
coral::Blob * m_blob_nc
Non-const reference to the BLOB.
const void * m_pDataStart
uint32_t createBlob(uint16_t objType, uint16_t objVersion, uint32_t objSizeUint32, uint32_t nObjs, uint32_t nChans, uint16_t nGains, const std::string &author="", const std::string &comment="", uint64_t timeStamp=0)
(re-)creation of the referenced BLOB object.
bool const RAWDATA *ch2 const
uint16_t getObjType() const
Returns the BLOB object type.
std::string getDate() const
Returns the date of the comment as string (derived from timestamp)
CaloCondBlobBase & operator=(const CaloCondBlobBase &other)
Assignment operator.
CaloCondBlobBase(const CaloCondBlobBase &other)
Copy Ctor.
unsigned int getHdrSize() const
Returns the size of the header in units of uint32_t.
uint32_t getCommentSizeChar() const
Returns the space occupied by the comment fields in units of chars.
const uint32_t * getBlobStart() const
Returns the BLOB start address as uint32_t pointer.
uint16_t getObjVersion() const
Returns the BLOB object version.
std::string getComment() const
Returns the actual comment.
void dumpHeader(std::ostream &stm) const
Prints the BLOB header summary information.
static uint32_t unpacknChans(const uint32_t gainAndnChans)
Thrown if coral::Blob does not conform with expected structure.
static std::string getClassName(CaloCondType::TYPE type)
Returns the class name.
uint32_t getNObjs() const
Returns the number of data objects stored int the BLOB.
uint32_t getNGains() const
Returns the number of gains stored for each channel.
const coral::Blob * m_blob
Const reference to the BLOB (always there)
std::string getFullComment() const
Returns a formated string build from all comment fields.
uint32_t getObjSizeByte() const
Returns the size of a data object in units of bytes.
def time(flags, cells_name, *args, **kw)
This class provides the core BLOB infrastructure.
unsigned m_sizeOfObj
Chache of some frequently-used numbers.
virtual ~CaloCondBlobBase()
Dtor.
uint64_t getTimeStamp() const
Returns the unix timestamp of the comment (seconds since 1.1.1970)
static uint32_t unpacknGains(const uint32_t gainAndnChans)
uint32_t getNChans() const
Returns the number of channels stored in the BLOB.