CGEM BOSS 6.6.5.i
BESIII Offline Software System
Loading...
Searching...
No Matches
TofMcHitBuilder Class Reference

#include <TofMcHitBuilder.h>

+ Inheritance diagram for TofMcHitBuilder:

Public Member Functions

 TofMcHitBuilder ()
 
virtual ~TofMcHitBuilder ()
 
virtual StatusCode initialize (string &initFile)
 
virtual uint32_t getTEID (uint32_t teid)
 
virtual uint32_t getREID (uint32_t reid)
 
virtual void unPack (vector< uint32_t >::const_iterator &, vector< uint32_t >::const_iterator &, TofTruth_t &)
 
virtual StatusCode pack (TofMcHitCol *tofMcHitCol, WriteRawEvent *&re)
 
- Public Member Functions inherited from Builder

Public Attributes

uint64_t m_xCoeff
 
uint64_t m_yCoeff
 
uint64_t m_zCoeff
 
uint64_t m_pxCoeff
 
uint64_t m_pyCoeff
 
uint64_t m_pzCoeff
 
uint64_t m_trackLengthCoeff
 
uint64_t m_timeCoeff
 

Additional Inherited Members

- Public Types inherited from Builder
typedef std::map< uint32_t, uint32_t > TE2REMAP
 
- Static Public Member Functions inherited from Builder
static bool expect (ifstream &f, string msg, string fname)
 
static bool expectInt (ifstream &f, string msg, string fname, uint32_t &val1, uint32_t &val2)
 
static bool expectLong (ifstream &f, string msg, string fname, uint64_t &val)
 
static bool find (ifstream &f, string msg, string fname)
 
- Protected Member Functions inherited from Builder
 Builder ()
 
virtual ~Builder ()
 
void append2event (WriteRawEvent *&re, uint32_t source_id, uint32_t size)
 
- Protected Attributes inherited from Builder
PropertyMgr m_propMgr
 
uint32_t * m_buf
 
uint32_t m_status
 
- Static Protected Attributes inherited from Builder
static string m_confFile
 

Detailed Description

Definition at line 12 of file TofMcHitBuilder.h.

Constructor & Destructor Documentation

◆ TofMcHitBuilder()

TofMcHitBuilder::TofMcHitBuilder ( )

Definition at line 7 of file TofMcHitBuilder.cxx.

◆ ~TofMcHitBuilder()

virtual TofMcHitBuilder::~TofMcHitBuilder ( )
inlinevirtual

Definition at line 17 of file TofMcHitBuilder.h.

17{};

Member Function Documentation

◆ getREID()

uint32_t TofMcHitBuilder::getREID ( uint32_t reid)
virtual

Implements Builder.

Definition at line 119 of file TofMcHitBuilder.cxx.

120{
121 return 0;
122}

◆ getTEID()

uint32_t TofMcHitBuilder::getTEID ( uint32_t teid)
virtual

Implements Builder.

Definition at line 113 of file TofMcHitBuilder.cxx.

114{
115 return 0;
116}

◆ initialize()

StatusCode TofMcHitBuilder::initialize ( string & initFile)
virtual

Reimplemented from Builder.

Definition at line 75 of file TofMcHitBuilder.cxx.

76{
77 ifstream f;
78
79 //read init file
80 f.open(initFile.c_str());
81
82 if ( f.bad() ) {
83 cerr << "Error: could not open file " << initFile << endl;
84 return StatusCode::FAILURE;
85 }
86
87 if (!Builder::find( f, "##TofTruthConf", initFile)) {
88 cerr << "Error: could not find '##TofTruthConf' in file " << initFile << endl;
89 return StatusCode::FAILURE;
90 }
91
92 if ( !Builder::expect( f, "#TofTruthShift", initFile) ||
93 !Builder::expectInt( f, "trackIndex", initFile, m_trackIndexIndex, m_trackIndexMask) ||
94 !Builder::expectInt( f, "partId", initFile, m_partIdIndex, m_partIdMask) ||
95 !Builder::expectInt( f, "scinNb", initFile, m_scinNbIndex, m_scinNbMask) ||
96 !Builder::expect( f, "#TofTruthCoeff", initFile) ||
97 !Builder::expectLong( f, "x", initFile, m_xCoeff) ||
98 !Builder::expectLong( f, "y", initFile, m_yCoeff) ||
99 !Builder::expectLong( f, "z", initFile, m_zCoeff) ||
100 !Builder::expectLong( f, "px", initFile, m_pxCoeff) ||
101 !Builder::expectLong( f, "py", initFile, m_pyCoeff) ||
102 !Builder::expectLong( f, "pz", initFile, m_pzCoeff) ||
103 !Builder::expectLong( f, "trackLength", initFile, m_trackLengthCoeff) ||
104 !Builder::expectLong( f, "time", initFile, m_timeCoeff) )
105 return StatusCode::FAILURE;
106
107 f.close();
108
109 return StatusCode::SUCCESS;
110}
static bool find(ifstream &f, string msg, string fname)
Definition Builder.cxx:60
static bool expect(ifstream &f, string msg, string fname)
Definition Builder.cxx:28
static bool expectLong(ifstream &f, string msg, string fname, uint64_t &val)
Definition Builder.cxx:52
static bool expectInt(ifstream &f, string msg, string fname, uint32_t &val1, uint32_t &val2)
Definition Builder.cxx:44
uint64_t m_trackLengthCoeff

Referenced by TofMcHitBuilder().

◆ pack()

StatusCode TofMcHitBuilder::pack ( TofMcHitCol * tofMcHitCol,
WriteRawEvent *& re )
virtual

Definition at line 34 of file TofMcHitBuilder.cxx.

35{
36/*
37 if (tofMcHitCol == NULL) {
38 cout << "TofMcHitBuilder::pack cant get TofMcHitCol" << endl;
39 return StatusCode::FAILURE;
40 }
41
42 vector<uint32_t> *tofReMcHitVec = new vector<uint32_t>;
43 TofTruth_t m_TofTruth;
44
45 TofMcHitCol::const_iterator pTofMcHit = tofMcHitCol->begin();
46 for ( ; pTofMcHit != tofMcHitCol->end(); pTofMcHit++) {
47 // make TofTruth_t data
48 makeTofTruth(pTofMcHit, m_TofTruth);
49 //pack the int numbers
50 uint32_t helpVal = (m_TofTruth.trackIndex<<m_trackIndexIndex) & m_trackIndexMask;
51 helpVal |= ((m_TofTruth.partId<<m_partIdIndex) & m_partIdMask);
52 helpVal |= ((m_TofTruth.scinNb<<m_scinNbIndex) & m_scinNbMask);
53 //fill the McHit vector
54 tofReMcHitVec->push_back(helpVal);
55 tofReMcHitVec->push_back(m_TofTruth.x);
56 tofReMcHitVec->push_back(m_TofTruth.y);
57 tofReMcHitVec->push_back(m_TofTruth.z);
58 tofReMcHitVec->push_back(m_TofTruth.px);
59 tofReMcHitVec->push_back(m_TofTruth.py);
60 tofReMcHitVec->push_back(m_TofTruth.pz);
61 tofReMcHitVec->push_back(m_TofTruth.trackLength);
62 tofReMcHitVec->push_back(m_TofTruth.time);
63 }
64
65 OfflineEventFormat::SubDetectorHeader sh(OfflineEventFormat::TOFTRUTH);
66 SubRawEvent *sub = new SubRawEvent(sh, tofReMcHitVec);
67 re->append(sub);
68*/
69
70 return StatusCode::SUCCESS;
71}

Referenced by RawDataTofMcHitCnv::createRep().

◆ unPack()

void TofMcHitBuilder::unPack ( vector< uint32_t >::const_iterator & iter,
vector< uint32_t >::const_iterator & eiter,
TofTruth_t & tt )
virtual

Definition at line 13 of file TofMcHitBuilder.cxx.

15{
16 uint32_t helpVal = *(iter++); assert(iter != eiter);
17 tt.x = *(iter++); assert(iter != eiter);
18 tt.y = *(iter++); assert(iter != eiter);
19 tt.z = *(iter++); assert(iter != eiter);
20 tt.px = *(iter++); assert(iter != eiter);
21 tt.py = *(iter++); assert(iter != eiter);
22 tt.pz = *(iter++); assert(iter != eiter);
23 tt.trackLength= *(iter++); assert(iter != eiter);
24 tt.time = *(iter++);
25
26 tt.trackIndex = (helpVal&m_trackIndexMask) >> m_trackIndexIndex;
27 tt.partId = (helpVal&m_partIdMask) >> m_partIdIndex;
28 tt.scinNb = (helpVal&m_scinNbMask) >> m_scinNbIndex;
29
30 return;
31}
EvtStreamInputIterator< typename Generator::result_type > iter(Generator gen, int N=0)

Referenced by RawDataTofMcHitCnv::createObj().

Member Data Documentation

◆ m_pxCoeff

uint64_t TofMcHitBuilder::m_pxCoeff

Definition at line 43 of file TofMcHitBuilder.h.

Referenced by RawDataTofMcHitCnv::createObj(), and initialize().

◆ m_pyCoeff

uint64_t TofMcHitBuilder::m_pyCoeff

Definition at line 44 of file TofMcHitBuilder.h.

Referenced by RawDataTofMcHitCnv::createObj(), and initialize().

◆ m_pzCoeff

uint64_t TofMcHitBuilder::m_pzCoeff

Definition at line 45 of file TofMcHitBuilder.h.

Referenced by RawDataTofMcHitCnv::createObj(), and initialize().

◆ m_timeCoeff

uint64_t TofMcHitBuilder::m_timeCoeff

Definition at line 47 of file TofMcHitBuilder.h.

Referenced by RawDataTofMcHitCnv::createObj(), and initialize().

◆ m_trackLengthCoeff

uint64_t TofMcHitBuilder::m_trackLengthCoeff

Definition at line 46 of file TofMcHitBuilder.h.

Referenced by RawDataTofMcHitCnv::createObj(), and initialize().

◆ m_xCoeff

uint64_t TofMcHitBuilder::m_xCoeff

Definition at line 40 of file TofMcHitBuilder.h.

Referenced by RawDataTofMcHitCnv::createObj(), and initialize().

◆ m_yCoeff

uint64_t TofMcHitBuilder::m_yCoeff

Definition at line 41 of file TofMcHitBuilder.h.

Referenced by RawDataTofMcHitCnv::createObj(), and initialize().

◆ m_zCoeff

uint64_t TofMcHitBuilder::m_zCoeff

Definition at line 42 of file TofMcHitBuilder.h.

Referenced by RawDataTofMcHitCnv::createObj(), and initialize().


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