BOSS 7.0.4
BESIII Offline Software System
Loading...
Searching...
No Matches
TofMcHitBuilder.cxx
Go to the documentation of this file.
1#include <iostream>
2#include <fstream>
3#include "Identifier/TofID.h"
4#include "RawDataCnv/EventManagement/TofMcHitBuilder.h"
5using namespace std;
6
8 :Builder()
9{
11}
12
13void TofMcHitBuilder::unPack(vector<uint32_t>::const_iterator& iter,
14 vector<uint32_t>::const_iterator& eiter, TofTruth_t& tt)
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 tt.strip = (helpVal&m_stripMask) >> m_stripIndex;
30
31 return;
32}
33
34
35StatusCode TofMcHitBuilder::pack(TofMcHitCol* tofMcHitCol, WriteRawEvent*& re)
36{
37/*
38 if (tofMcHitCol == NULL) {
39 cout << "TofMcHitBuilder::pack cant get TofMcHitCol" << endl;
40 return StatusCode::FAILURE;
41 }
42
43 vector<uint32_t> *tofReMcHitVec = new vector<uint32_t>;
44 TofTruth_t m_TofTruth;
45
46 TofMcHitCol::const_iterator pTofMcHit = tofMcHitCol->begin();
47 for ( ; pTofMcHit != tofMcHitCol->end(); pTofMcHit++) {
48 // make TofTruth_t data
49 makeTofTruth(pTofMcHit, m_TofTruth);
50 //pack the int numbers
51 uint32_t helpVal = (m_TofTruth.trackIndex<<m_trackIndexIndex) & m_trackIndexMask;
52 helpVal |= ((m_TofTruth.partId<<m_partIdIndex) & m_partIdMask);
53 helpVal |= ((m_TofTruth.scinNb<<m_scinNbIndex) & m_scinNbMask);
54 //fill the McHit vector
55 tofReMcHitVec->push_back(helpVal);
56 tofReMcHitVec->push_back(m_TofTruth.x);
57 tofReMcHitVec->push_back(m_TofTruth.y);
58 tofReMcHitVec->push_back(m_TofTruth.z);
59 tofReMcHitVec->push_back(m_TofTruth.px);
60 tofReMcHitVec->push_back(m_TofTruth.py);
61 tofReMcHitVec->push_back(m_TofTruth.pz);
62 tofReMcHitVec->push_back(m_TofTruth.trackLength);
63 tofReMcHitVec->push_back(m_TofTruth.time);
64 }
65
66 OfflineEventFormat::SubDetectorHeader sh(OfflineEventFormat::TOFTRUTH);
67 SubRawEvent *sub = new SubRawEvent(sh, tofReMcHitVec);
68 re->append(sub);
69*/
70
71 return StatusCode::SUCCESS;
72}
73
74// initialize re2te tables
75
76StatusCode TofMcHitBuilder::initialize(string& initFile)
77{
78 ifstream f;
79
80 //read init file
81 f.open(initFile.c_str());
82
83 if ( f.bad() ) {
84 cerr << "Error: could not open file " << initFile << endl;
85 return StatusCode::FAILURE;
86 }
87
88 if (!Builder::find( f, "##TofTruthConf", initFile)) {
89 cerr << "Error: could not find '##TofTruthConf' in file " << initFile << endl;
90 return StatusCode::FAILURE;
91 }
92
93 if ( !Builder::expect( f, "#TofTruthShift", initFile) ||
94 !Builder::expectInt( f, "trackIndex", initFile, m_trackIndexIndex, m_trackIndexMask) ||
95 !Builder::expectInt( f, "partId", initFile, m_partIdIndex, m_partIdMask) ||
96 !Builder::expectInt( f, "scinNb", initFile, m_scinNbIndex, m_scinNbMask) ||
97 !Builder::expectInt( f, "strip", initFile, m_stripIndex, m_stripMask) ||
98 !Builder::expect( f, "#TofTruthCoeff", initFile) ||
99 !Builder::expectLong( f, "x", initFile, m_xCoeff) ||
100 !Builder::expectLong( f, "y", initFile, m_yCoeff) ||
101 !Builder::expectLong( f, "z", initFile, m_zCoeff) ||
102 !Builder::expectLong( f, "px", initFile, m_pxCoeff) ||
103 !Builder::expectLong( f, "py", initFile, m_pyCoeff) ||
104 !Builder::expectLong( f, "pz", initFile, m_pzCoeff) ||
105 !Builder::expectLong( f, "trackLength", initFile, m_trackLengthCoeff) ||
106 !Builder::expectLong( f, "time", initFile, m_timeCoeff) )
107 return StatusCode::FAILURE;
108
109 f.close();
110
111 return StatusCode::SUCCESS;
112}
113
114
115uint32_t TofMcHitBuilder::getTEID(uint32_t reid)
116{
117 return 0;
118}
119
120
121uint32_t TofMcHitBuilder::getREID(uint32_t teid)
122{
123 return 0;
124}
125
126void TofMcHitBuilder::makeTofTruth
127(TofMcHitCol::const_iterator& pTofMcHit, TofTruth_t& tt)
128{
129 Identifier ident = (*pTofMcHit)->identify();
130 uint32_t partId = TofID::barrel_ec(ident);
131 uint32_t scinNum = 0;
132 uint32_t strip = 0;
133
134 if( TofID::is_scin(ident) ) {
135 uint32_t layer = TofID::layer(ident);
136 scinNum = TofID::phi_module(ident);
137 if (TofID::is_barrel(layer)) scinNum += TofID::getPHI_BARREL_MAX() + 1;
138 }
139 else if( TofID::is_mrpc(ident) ) {
140 uint32_t endcap = TofID::endcap(ident);
141 scinNum = TofID::module(ident);
142 if( TofID::is_barrel(endcap) ) partId = 4;
143 strip = TofID::strip(ident);
144 }
145
146 tt.trackIndex = (*pTofMcHit)->getTrackIndex();
147 tt.partId = partId;
148 tt.scinNb = scinNum;
149 tt.strip = strip;
150 tt.x = int((*pTofMcHit)->getPositionX() * m_xCoeff);
151 tt.y = int((*pTofMcHit)->getPositionY() * m_yCoeff);
152 tt.z = int((*pTofMcHit)->getPositionZ() * m_zCoeff);
153 tt.px = int((*pTofMcHit)->getPx() * m_pxCoeff);
154 tt.py = int((*pTofMcHit)->getPy() * m_pyCoeff);
155 tt.pz = int((*pTofMcHit)->getPz() * m_pzCoeff);
156 tt.trackLength= int((*pTofMcHit)->getTrackLength() * m_trackLengthCoeff);
157 tt.time = int((*pTofMcHit)->getFlightTime() * m_timeCoeff);
158
159 return;
160}
161
EvtStreamInputIterator< typename Generator::result_type > iter(Generator gen, int N=0)
static bool expectLong(ifstream &f, string msg, string fname, uint64_t &val)
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 find(ifstream &f, string msg, string fname)
static int endcap(const Identifier &id)
Definition: TofID.cxx:124
static int strip(const Identifier &id)
Definition: TofID.cxx:136
static bool is_scin(const Identifier &id)
Definition: TofID.cxx:102
static value_type getPHI_BARREL_MAX()
Definition: TofID.cxx:217
static bool is_barrel(const Identifier &id)
Test for barrel.
Definition: TofID.cxx:49
static bool is_mrpc(const Identifier &id)
Definition: TofID.cxx:113
static int phi_module(const Identifier &id)
Definition: TofID.cxx:73
static int barrel_ec(const Identifier &id)
Values of different levels (failure returns 0)
Definition: TofID.cxx:61
static int layer(const Identifier &id)
Definition: TofID.cxx:66
static int module(const Identifier &id)
Definition: TofID.cxx:130
virtual uint32_t getREID(uint32_t reid)
virtual StatusCode initialize(string &initFile)
virtual void unPack(vector< uint32_t >::const_iterator &, vector< uint32_t >::const_iterator &, TofTruth_t &)
virtual StatusCode pack(TofMcHitCol *tofMcHitCol, WriteRawEvent *&re)
virtual uint32_t getTEID(uint32_t teid)
TFile f("ana_bhabha660a_dqa_mcPat_zy_old.root")