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 // Last commit: $Id: SiStripDigiToRaw.cc,v 1.41 2009/09/14 14:01:04 nc302 Exp $
2 
13 #include <iostream>
14 #include <sstream>
15 #include <vector>
16 
17 namespace sistrip {
18 
19  // -----------------------------------------------------------------------------
22  bool useFedKey ) :
23  mode_(mode),
24  useFedKey_(useFedKey),
25  bufferGenerator_()
26  {
27  if ( edm::isDebugEnabled() ) {
28  LogDebug("DigiToRaw")
29  << "[sistrip::DigiToRaw::DigiToRaw]"
30  << " Constructing object...";
31  }
33  }
34 
35  // -----------------------------------------------------------------------------
38  if ( edm::isDebugEnabled() ) {
39  LogDebug("DigiToRaw")
40  << "[sistrip::DigiToRaw::~DigiToRaw]"
41  << " Destructing object...";
42  }
43  }
44 
45  // -----------------------------------------------------------------------------
57  std::auto_ptr<FEDRawDataCollection>& buffers ) {
58  createFedBuffers_(event, cabling, collection, buffers, true);
59  }
60 
64  std::auto_ptr<FEDRawDataCollection>& buffers ) {
65  createFedBuffers_(event, cabling, collection, buffers, false);
66  }
67 
68  template<class Digi_t>
72  std::auto_ptr<FEDRawDataCollection>& buffers,
73  bool zeroSuppressed) {
74  try {
75 
76  //set the L1ID to use in the buffers
77  bufferGenerator_.setL1ID(0xFFFFFF & event.id().event());
78 
79  const std::vector<uint16_t>& fed_ids = cabling->feds();
80  std::vector<uint16_t>::const_iterator ifed;
81 
82  for ( ifed = fed_ids.begin(); ifed != fed_ids.end(); ifed++ ) {
83 
84  const std::vector<FedChannelConnection>& conns = cabling->connections(*ifed);
85  std::vector<FedChannelConnection>::const_iterator iconn = conns.begin();
86 
87  FEDStripData fedData(zeroSuppressed);
88 
89  for ( ; iconn != conns.end(); iconn++ ) {
90 
91  // Determine FED key from cabling
92  uint32_t fed_key = ( ( iconn->fedId() & sistrip::invalid_ ) << 16 ) | ( iconn->fedCh() & sistrip::invalid_ );
93 
94  // Determine whether DetId or FED key should be used to index digi containers
95  uint32_t key = ( useFedKey_ || mode_ == READOUT_MODE_SCOPE ) ? fed_key : iconn->detId();
96 
97  // Check key is non-zero and valid
98  if ( !key || ( key == sistrip::invalid32_ ) ) { continue; }
99 
100  // Determine APV pair number (needed only when using DetId)
101  uint16_t ipair = ( useFedKey_ || mode_ == READOUT_MODE_SCOPE ) ? 0 : iconn->apvPairNumber();
102 
103  FEDStripData::ChannelData& chanData = fedData[iconn->fedCh()];
104 
105  // Find digis for DetID in collection
106  typename std::vector< edm::DetSet<Digi_t> >::const_iterator digis = collection->find( key );
107  if (digis == collection->end()) { continue; }
108 
109  typename edm::DetSet<Digi_t>::const_iterator idigi, digis_begin(digis->data.begin());
110  for ( idigi = digis_begin; idigi != digis->data.end(); idigi++ ) {
111 
112  if ( STRIP(idigi, digis_begin) < ipair*256 ||
113  STRIP(idigi, digis_begin) > ipair*256+255 ) { continue; }
114  const unsigned short strip = STRIP(idigi, digis_begin) % 256;
115 
116  if ( strip >= STRIPS_PER_FEDCH ) {
117  if ( edm::isDebugEnabled() ) {
118  std::stringstream ss;
119  ss << "[sistrip::DigiToRaw::createFedBuffers]"
120  << " strip >= strips_per_fedCh";
121  edm::LogWarning("DigiToRaw") << ss.str();
122  }
123  continue;
124  }
125 
126  // check if value already exists
127  if ( edm::isDebugEnabled() ) {
128  const uint16_t value = 0;//chanData[strip];
129  if ( value && value != (*idigi).adc() ) {
130  std::stringstream ss;
131  ss << "[sistrip::DigiToRaw::createFedBuffers]"
132  << " Incompatible ADC values in buffer!"
133  << " FedId/FedCh: " << *ifed << "/" << iconn->fedCh()
134  << " DetStrip: " << STRIP(idigi, digis_begin)
135  << " FedChStrip: " << strip
136  << " AdcValue: " << (*idigi).adc()
137  << " RawData[" << strip << "]: " << value;
138  edm::LogWarning("DigiToRaw") << ss.str();
139  }
140  }
141 
142  // Add digi to buffer
143  chanData[strip] = (*idigi).adc();
144 
145  }
146  // if ((*idigi).strip() >= (ipair+1)*256) break;
147  }
148 
149  //create the buffer
150  FEDRawData& fedrawdata = buffers->FEDData( *ifed );
151  bufferGenerator_.generateBuffer(&fedrawdata,fedData,*ifed);
152 
153  }
154  }
155  catch (const std::exception& e) {
156  if ( edm::isDebugEnabled() ) {
157  edm::LogWarning("DigiToRaw")
158  << "DigiToRaw::createFedBuffers] "
159  << "Exception caught : " << e.what();
160  }
161  }
162 
163  }
164 
167 
168 }
169 
#define LogDebug(id)
EventNumber_t event() const
Definition: EventID.h:44
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:16
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
FEDReadoutMode mode_
static const uint16_t STRIPS_PER_FEDCH
FEDBufferGenerator & setL1ID(const uint32_t newL1ID)
static const uint16_t invalid_
Definition: Constants.h:17
edm::EventID id() const
Definition: EventBase.h:56
collection_type data
Definition: DetSet.h:79
#define begin
Definition: vmac.h:31
list key
Definition: combine.py:13
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:34
FEDBufferGenerator bufferGenerator_