CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripDigiToRaw.cc
Go to the documentation of this file.
1 
2 #include "SiStripDigiToRaw.h"
12 #include <iostream>
13 #include <sstream>
14 #include <vector>
15 
16 namespace sistrip {
17 
18  // -----------------------------------------------------------------------------
21  bool useFedKey ) :
22  mode_(mode),
23  useFedKey_(useFedKey),
24  bufferGenerator_()
25  {
26  if ( edm::isDebugEnabled() ) {
27  LogDebug("DigiToRaw")
28  << "[sistrip::DigiToRaw::DigiToRaw]"
29  << " Constructing object...";
30  }
32  }
33 
34  // -----------------------------------------------------------------------------
37  if ( edm::isDebugEnabled() ) {
38  LogDebug("DigiToRaw")
39  << "[sistrip::DigiToRaw::~DigiToRaw]"
40  << " Destructing object...";
41  }
42  }
43 
44  // -----------------------------------------------------------------------------
56  std::auto_ptr<FEDRawDataCollection>& buffers ) {
57  createFedBuffers_(event, cabling, collection, buffers, true);
58  }
59 
63  std::auto_ptr<FEDRawDataCollection>& buffers ) {
64  createFedBuffers_(event, cabling, collection, buffers, false);
65  }
66 
67  template<class Digi_t>
71  std::auto_ptr<FEDRawDataCollection>& buffers,
72  bool zeroSuppressed) {
73  try {
74 
75  //set the L1ID to use in the buffers
76  bufferGenerator_.setL1ID(0xFFFFFF & event.id().event());
77 
78  auto fed_ids = cabling->fedIds();
79  for ( auto ifed = fed_ids.begin(); ifed != fed_ids.end(); ++ifed ) {
80 
81  auto conns = cabling->fedConnections(*ifed);
82 
83  //for special mode premix raw, data is zero-suppressed but not converted to 8 bit
84  //zeroSuppressed here means converted to 8 bit...
85  if (mode_ == READOUT_MODE_PREMIX_RAW) zeroSuppressed=false;
86  FEDStripData fedData(zeroSuppressed);
87 
88  for (auto iconn = conns.begin() ; iconn != conns.end(); iconn++ ) {
89 
90  // Determine FED key from cabling
91  uint32_t fed_key = ( ( iconn->fedId() & sistrip::invalid_ ) << 16 ) | ( iconn->fedCh() & sistrip::invalid_ );
92 
93  // Determine whether DetId or FED key should be used to index digi containers
94  uint32_t key = ( useFedKey_ || mode_ == READOUT_MODE_SCOPE ) ? fed_key : iconn->detId();
95 
96  // Check key is non-zero and valid
97  if ( !key || ( key == sistrip::invalid32_ ) ) { continue; }
98 
99  // Determine APV pair number (needed only when using DetId)
100  uint16_t ipair = ( useFedKey_ || mode_ == READOUT_MODE_SCOPE ) ? 0 : iconn->apvPairNumber();
101 
102  FEDStripData::ChannelData& chanData = fedData[iconn->fedCh()];
103 
104  // Find digis for DetID in collection
105  typename std::vector< edm::DetSet<Digi_t> >::const_iterator digis = collection->find( key );
106  if (digis == collection->end()) { continue; }
107 
108  typename edm::DetSet<Digi_t>::const_iterator idigi, digis_begin(digis->data.begin());
109  for ( idigi = digis_begin; idigi != digis->data.end(); idigi++ ) {
110 
111  if ( STRIP(idigi, digis_begin) < ipair*256 ||
112  STRIP(idigi, digis_begin) > ipair*256+255 ) { continue; }
113  const unsigned short strip = STRIP(idigi, digis_begin) % 256;
114 
115  if ( strip >= STRIPS_PER_FEDCH ) {
116  if ( edm::isDebugEnabled() ) {
117  std::stringstream ss;
118  ss << "[sistrip::DigiToRaw::createFedBuffers]"
119  << " strip >= strips_per_fedCh";
120  edm::LogWarning("DigiToRaw") << ss.str();
121  }
122  continue;
123  }
124 
125  // check if value already exists
126  if ( edm::isDebugEnabled() ) {
127  const uint16_t value = 0;//chanData[strip];
128  if ( value && value != (*idigi).adc() ) {
129  std::stringstream ss;
130  ss << "[sistrip::DigiToRaw::createFedBuffers]"
131  << " Incompatible ADC values in buffer!"
132  << " FedId/FedCh: " << *ifed << "/" << iconn->fedCh()
133  << " DetStrip: " << STRIP(idigi, digis_begin)
134  << " FedChStrip: " << strip
135  << " AdcValue: " << (*idigi).adc()
136  << " RawData[" << strip << "]: " << value;
137  edm::LogWarning("DigiToRaw") << ss.str();
138  }
139  }
140 
141  // Add digi to buffer
142  chanData[strip] = (*idigi).adc();
143 
144  }
145  // if ((*idigi).strip() >= (ipair+1)*256) break;
146  }
147 
148  //create the buffer
149  FEDRawData& fedrawdata = buffers->FEDData( *ifed );
150  bufferGenerator_.generateBuffer(&fedrawdata,fedData,*ifed);
151 
152  }
153  }
154  catch (const std::exception& e) {
155  if ( edm::isDebugEnabled() ) {
156  edm::LogWarning("DigiToRaw")
157  << "DigiToRaw::createFedBuffers] "
158  << "Exception caught : " << e.what();
159  }
160  }
161 
162  }
163 
166 
167 }
168 
#define LogDebug(id)
EventNumber_t event() const
Definition: EventID.h:41
bool isDebugEnabled()
void generateBuffer(FEDRawData *rawDataObject, const FEDStripData &data, const uint16_t sourceID) const
void createFedBuffers_(edm::Event &, edm::ESHandle< SiStripFedCabling > &cabling, edm::Handle< edm::DetSetVector< Digi_t > > &digis, std::auto_ptr< FEDRawDataCollection > &buffers, bool zeroSuppressed)
FEDBufferGenerator & setReadoutMode(const FEDReadoutMode newReadoutMode)
DigiToRaw(FEDReadoutMode, bool use_fed_key)
static const uint32_t invalid32_
Definition: Constants.h:15
void createFedBuffers(edm::Event &, edm::ESHandle< SiStripFedCabling > &cabling, edm::Handle< edm::DetSetVector< SiStripDigi > > &digis, std::auto_ptr< FEDRawDataCollection > &buffers)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
string key
FastSim: produces sample of signal events, overlayed with premixed minbias events.
FEDReadoutMode mode_
static const uint16_t STRIPS_PER_FEDCH
FEDBufferGenerator & setL1ID(const uint32_t newL1ID)
static const uint16_t invalid_
Definition: Constants.h:16
edm::EventID id() const
Definition: EventBase.h:60
collection_type data
Definition: DetSet.h:78
#define begin
Definition: vmac.h:30
uint16_t STRIP(const edm::DetSet< SiStripDigi >::const_iterator &it, const edm::DetSet< SiStripDigi >::const_iterator &begin) const
collection_type::const_iterator const_iterator
Definition: DetSet.h:33
FEDBufferGenerator bufferGenerator_