test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
OMTFinput.cc
Go to the documentation of this file.
1 #include <cassert>
2 #include <iostream>
3 #include <cmath>
4 
8 
12 
13  myOmtfConfig = omtfConfig;
14  clear();
15 
16 }
19 const OMTFinput::vector1D & OMTFinput::getLayerData(unsigned int iLayer, bool giveEta) const{
20  assert(iLayer<measurementsPhi.size());
21 
22  if(giveEta) return measurementsEta[iLayer];
23  return measurementsPhi[iLayer];
24 }
27 std::bitset<128> OMTFinput::getRefHits(unsigned int iProcessor) const{
28 
29  std::bitset<128> refHits;
30 
31  unsigned int iRefHit = 0;
32  for(auto iRefHitDef:myOmtfConfig->getRefHitsDefs()[iProcessor]){
33  int iPhi = getLayerData(myOmtfConfig->getRefToLogicNumber()[iRefHitDef.iRefLayer])[iRefHitDef.iInput];
34  int iEta = getLayerData(myOmtfConfig->getRefToLogicNumber()[iRefHitDef.iRefLayer],true)[iRefHitDef.iInput];
35  if(iPhi<(int)myOmtfConfig->nPhiBins()){
36  refHits.set(iRefHit, iRefHitDef.fitsRange(iPhi));
37  refHitsEta[iRefHit] = iEta;
38  }
39  iRefHit++;
40  }
41 
42  return refHits;
43 }
46 bool OMTFinput::addLayerHit(unsigned int iLayer,
47  unsigned int iInput,
48  int iPhi, int iEta){
49 
50  assert(iLayer<myOmtfConfig->nLayers());
51  assert(iInput<14);
52 
53  if(iPhi>=(int)myOmtfConfig->nPhiBins()) return true;
54 
55  if(measurementsPhi[iLayer][iInput]!=(int)myOmtfConfig->nPhiBins()) ++iInput;
56 
57  if(iInput>13) return false;
58 
59  measurementsPhi[iLayer][iInput] = iPhi;
60  measurementsEta[iLayer][iInput] = iEta;
61 
62  return true;
63 }
67  unsigned int iEvent,
68  unsigned int iProcessor){
69 
70  measurementsPhi = aReader->readEvent(iEvent, iProcessor);
71  measurementsEta = aReader->readEvent(iEvent, iProcessor, true);
72 
73 }
76 void OMTFinput::mergeData(const OMTFinput *aInput){
77 
78  for(unsigned int iLayer=0;iLayer<myOmtfConfig->nLayers();++iLayer){
79  const OMTFinput::vector1D & aPhiVec = aInput->getLayerData(iLayer,false);
80  const OMTFinput::vector1D & aEtaVec = aInput->getLayerData(iLayer,true);
81  if(!aPhiVec.size()) continue;
82 
83  OMTFinput::vector1D layerData = getLayerData(iLayer, false);
84  for(unsigned int iInput=0;iInput<14;++iInput){
85  addLayerHit(iLayer,iInput,aPhiVec[iInput],aEtaVec[iInput]);
86  }
87  }
88 }
92 
93  vector1D aLayer1D(14,myOmtfConfig->nPhiBins());
94  measurementsPhi.assign(myOmtfConfig->nLayers(),aLayer1D);
95  measurementsEta.assign(myOmtfConfig->nLayers(),aLayer1D);
96  refHitsEta.assign(128,myOmtfConfig->nPhiBins());
97 
98 }
101 void OMTFinput::shiftMyPhi(int phiShift){
102 
103  int lowScaleEnd = std::pow(2,myOmtfConfig->nPhiBits()-1);
104  int highScaleEnd = lowScaleEnd-1;
105 
106 for(unsigned int iLogicLayer=0;iLogicLayer<measurementsPhi.size();++iLogicLayer){
107  for(unsigned int iHit=0;iHit<measurementsPhi[iLogicLayer].size();++iHit){
108  if(!myOmtfConfig->getBendingLayers().count(iLogicLayer) &&
109  measurementsPhi[iLogicLayer][iHit]<(int)myOmtfConfig->nPhiBins()){
110  if(measurementsPhi[iLogicLayer][iHit]<0) measurementsPhi[iLogicLayer][iHit]+=myOmtfConfig->nPhiBins();
111  measurementsPhi[iLogicLayer][iHit]-=phiShift;
112  if(measurementsPhi[iLogicLayer][iHit]<0) measurementsPhi[iLogicLayer][iHit]+=myOmtfConfig->nPhiBins();
113  measurementsPhi[iLogicLayer][iHit]+=-lowScaleEnd;
114  if(measurementsPhi[iLogicLayer][iHit]<-lowScaleEnd ||
115  measurementsPhi[iLogicLayer][iHit]>highScaleEnd) measurementsPhi[iLogicLayer][iHit] = (int)myOmtfConfig->nPhiBins();
116  }
117  }
118  }
119 }
122 std::ostream & operator << (std::ostream &out, const OMTFinput & aInput){
123 
124 for(unsigned int iLogicLayer=0;iLogicLayer<aInput.measurementsPhi.size();++iLogicLayer){
125  out<<"Logic layer: "<<iLogicLayer<<" Hits: ";
126  for(unsigned int iHit=0;iHit<aInput.measurementsPhi[iLogicLayer].size();++iHit){
127  out<<aInput.measurementsPhi[iLogicLayer][iHit]<<"\t";
128  }
129  out<<std::endl;
130  }
131  return out;
132 }
const std::set< int > & getBendingLayers() const
void clear()
Reset vectors with data.
Definition: OMTFinput.cc:91
vector2D measurementsEta
Definition: OMTFinput.h:59
void mergeData(const OMTFinput *aInput)
Definition: OMTFinput.cc:76
const OMTFConfiguration * myOmtfConfig
Definition: OMTFinput.h:64
void shiftMyPhi(int phiShift)
Apply shift to all data.
Definition: OMTFinput.cc:101
assert(m_qm.get())
unsigned int nLayers() const
unsigned int nPhiBins() const
std::vector< std::vector< int > > readEvent(unsigned int iEvent=0, unsigned int iProcessor=0, bool readEta=false)
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:188
std::vector< int > vector1D
Definition: OMTFinput.h:15
const OMTFinput::vector1D & getLayerData(unsigned int iLayer, bool giveEta=false) const
Definition: OMTFinput.cc:19
vector1D refHitsEta
RefHitsEta.
Definition: OMTFinput.h:62
unsigned int nPhiBits() const
int iEvent
Definition: GenABIO.cc:230
const std::vector< std::vector< RefHitDef > > & getRefHitsDefs() const
OMTFinput(const OMTFConfiguration *)
Definition: OMTFinput.cc:11
std::bitset< 128 > getRefHits(unsigned int iProcessor) const
Definition: OMTFinput.cc:27
const std::vector< int > & getRefToLogicNumber() const
bool addLayerHit(unsigned int iLayer, unsigned int iInput, int iPhi, int iEta)
Definition: OMTFinput.cc:46
void readData(XMLConfigReader *aReader, unsigned int iEvent=0, unsigned int iProcessor=0)
Read data from a XML file.
Definition: OMTFinput.cc:66
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:40
vector2D measurementsPhi
Definition: OMTFinput.h:54