CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Phase2TrackerCommissioningDigiProducer.cc
Go to the documentation of this file.
9 #include <iostream>
10 #include <sstream>
11 #include <iomanip>
12 
13 using namespace std;
14 
16 {
17  produces< edm::DetSet<Phase2TrackerCommissioningDigi> >("ConditionData");
18  token_ = consumes<FEDRawDataCollection>(pset.getParameter<edm::InputTag>("ProductLabel"));
19 }
20 
22 {
23 }
24 
26 {
27  // Retrieve FEDRawData collection
29  event.getByToken( token_, buffers );
30 
31  // Analyze strip tracker FED buffers in data
32  size_t fedIndex;
33  for( fedIndex=0; fedIndex<Phase2Tracker::CMS_FED_ID_MAX; ++fedIndex )
34  {
35  const FEDRawData& fed = buffers->FEDData(fedIndex);
36  if(fed.size()!=0 && fedIndex >= Phase2Tracker::FED_ID_MIN && fedIndex <= Phase2Tracker::FED_ID_MAX)
37  {
38  // construct buffer
40  buffer = new Phase2Tracker::Phase2TrackerFEDBuffer(fed.data(),fed.size());
41 
42  // fetch condition data
43  std::map<uint32_t,uint32_t> cond_data = buffer->conditionData();
44  delete buffer;
45 
46  // print cond data for debug
47  LogTrace("Phase2TrackerCommissioningDigiProducer") << "--- Condition data debug ---" << std::endl;
48  std::map<uint32_t,uint32_t>::const_iterator it;
49  for(it = cond_data.begin(); it != cond_data.end(); it++)
50  {
51  LogTrace("Phase2TrackerCommissioningDigiProducer") << std::hex << "key: " << it->first
52  << std::hex << " value: " << it->second << " (hex) "
53  << std::dec << it->second << " (dec) " << std::endl;
54  }
55  LogTrace("Phase2TrackerCommissioningDigiProducer") << "----------------------------" << std::endl;
56  // store it into digis
58  for(it = cond_data.begin(); it != cond_data.end(); it++)
59  {
60  cond_data_digi->push_back(Phase2TrackerCommissioningDigi(it->first,it->second));
61  }
62  std::auto_ptr< edm::DetSet<Phase2TrackerCommissioningDigi> > cdd(cond_data_digi);
63  event.put( cdd, "ConditionData" );
64  }
65  }
66 }
T getParameter(std::string const &) const
void push_back(const T &t)
Definition: DetSet.h:68
std::map< uint32_t, uint32_t > conditionData() const
static const uint16_t CMS_FED_ID_MAX
Definition: utils.h:19
Phase2TrackerCommissioningDigiProducer(const edm::ParameterSet &pset)
constructor
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:47
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
#define LogTrace(id)
static const uint16_t FED_ID_MAX
Definition: utils.h:18
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:28
static const uint16_t FED_ID_MIN
Definition: utils.h:17