ATLAS Offline Software
Loading...
Searching...
No Matches
LArAutoCorrBlob Class Reference

#include <LArAutoCorrBlob.h>

Inheritance diagram for LArAutoCorrBlob:
Collaboration diagram for LArAutoCorrBlob:

Public Types

enum  { ERRORCODE = LArElecCalib::ERRORCODE }

Public Member Functions

 LArAutoCorrBlob ()
 ~LArAutoCorrBlob ()

Protected Member Functions

void readBlob (const CondAttrListCollection *attrList, MsgStream &msg)
ILArAutoCorr::AutoCorrRef_t autocorrByHash (const IdentifierHash &hs, int gain) const

Protected Attributes

unsigned m_nChannels
unsigned m_nPoints

Private Attributes

std::vector< const float * > m_pAutoCorr

Detailed Description

Definition at line 17 of file LArAutoCorrBlob.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
ERRORCODE 

Definition at line 20 of file LArAutoCorrBlob.h.

Constructor & Destructor Documentation

◆ LArAutoCorrBlob()

LArAutoCorrBlob::LArAutoCorrBlob ( )

Definition at line 9 of file LArAutoCorrBlob.cxx.

10 :m_nChannels(0),
11 m_nPoints(0)
12{}

◆ ~LArAutoCorrBlob()

LArAutoCorrBlob::~LArAutoCorrBlob ( )

Definition at line 14 of file LArAutoCorrBlob.cxx.

15{}

Member Function Documentation

◆ autocorrByHash()

ILArAutoCorr::AutoCorrRef_t LArAutoCorrBlob::autocorrByHash ( const IdentifierHash & hs,
int gain ) const
inlineprotected

Definition at line 28 of file LArAutoCorrBlob.h.

◆ readBlob()

void LArAutoCorrBlob::readBlob ( const CondAttrListCollection * attrList,
MsgStream & msg )
protected

Definition at line 18 of file LArAutoCorrBlob.cxx.

18 {
20 m_nPoints=0;
21 m_pAutoCorr.clear();
22
23 if (!attrList) return;
24
27
28 m_pAutoCorr.resize(attrList->size());
29 msg << MSG::DEBUG << "Found data for " << attrList->size() << " gains." << endmsg;
30
31 int blobSize=0;
32
33 for(;gainIt!=gainIt_e;++gainIt) {
34 const unsigned gain=gainIt->first;
35 if (gain>=attrList->size() || gain>2) {
36 msg << MSG::ERROR << "Found unexpected COOL-channel (=gain) number:" << gain << endmsg;
37 return; //ERROR
38 }
39 const coral::AttributeList& attr=gainIt->second;
40 const coral::Blob& acBlob = attr["AutoCorrVec"].data<coral::Blob>();
41 if (blobSize==0) blobSize=acBlob.size();
42 if (m_nPoints==0) m_nPoints=attr["nPoints"].data<unsigned>();
43
44 //Sanity checks:
45 if (blobSize!=acBlob.size()) {
46 msg << MSG::ERROR << "Unequal blob size (" << blobSize << "/"
47 << acBlob.size() << ")" <<endmsg;
48 return;
49 }
50 if (m_nPoints!=attr["nPoints"].data<unsigned>()) {
51 msg << MSG::ERROR << "Unequal number of samples (" << m_nPoints << "/"
52 << attr["nPoints"].data<unsigned>() << ")" << endmsg;
53 return;
54 }
55
56 m_pAutoCorr[gain]=static_cast<const float*>(acBlob.startingAddress());
57 }// end loop over COOL channels
58
59
60 if (m_nPoints==0) {
61 msg << MSG::ERROR << "Number of points is zero!" << endmsg;
62 return;
63 }
64 m_nChannels=blobSize/(sizeof(float)*m_nPoints);
65 msg << MSG::DEBUG << "Found data for " << m_nChannels << endmsg;
66 return;
67}
#define endmsg
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11
const_iterator end() const
const_iterator begin() const
Access to Chan/AttributeList pairs via iterators.
size_type size() const
number of Chan/AttributeList pairs
ChanAttrListMap::const_iterator const_iterator
MsgStream & msg
Definition testRead.cxx:32

Member Data Documentation

◆ m_nChannels

unsigned LArAutoCorrBlob::m_nChannels
protected

Definition at line 37 of file LArAutoCorrBlob.h.

◆ m_nPoints

unsigned LArAutoCorrBlob::m_nPoints
protected

Definition at line 38 of file LArAutoCorrBlob.h.

◆ m_pAutoCorr

std::vector<const float*> LArAutoCorrBlob::m_pAutoCorr
private

Definition at line 41 of file LArAutoCorrBlob.h.


The documentation for this class was generated from the following files: