CMS 3D CMS Logo

ECALRegFEDSelector.cc
Go to the documentation of this file.
1 
7 
9 {
10  tok_seed_ = consumes<trigger::TriggerFilterObjectWithRefs>(iConfig.getParameter<edm::InputTag>("regSeedLabel"));
11  delta_=iConfig.getParameter<double>("delta");
12 
13  tok_raw_ = consumes<FEDRawDataCollection>(iConfig.getParameter<edm::InputTag>("rawInputLabel"));
14 
15  ec_mapping = std::make_unique<EcalElectronicsMapping>();
16 
17  produces<FEDRawDataCollection>();
18  produces<EcalListOfFEDS>();
19 
20  for (int p=0; p<1200; p++)
21  {
22  fedSaved[p]=false;
23  }
24 }
25 
26 
28 {
29 }
30 
31 
33 {
34  for (int p=0; p<1200; p++)
35  {
36  fedSaved[p]=false;
37  }
38 
39  auto producedData = std::make_unique<FEDRawDataCollection>();
40 
41  auto fedList = std::make_unique<EcalListOfFEDS>();
42 
44  iEvent.getByToken(tok_seed_,trigSeedTrks);
45 
46  std::vector< edm::Ref<reco::IsolatedPixelTrackCandidateCollection> > isoPixTrackRefs;
47  trigSeedTrks->getObjects(trigger::TriggerTrack, isoPixTrackRefs);
48 
50  iEvent.getByToken(tok_raw_,rawIn);
51 
52  // std::vector<int> EC_FED_IDs;
53 
54  for (uint32_t p=0; p<isoPixTrackRefs.size(); p++)
55  {
56  double etaObj_=isoPixTrackRefs[p]->track()->eta();
57  double phiObj_=isoPixTrackRefs[p]->track()->phi();
58 
59  RectangularEtaPhiRegion ecEtaPhi(etaObj_-delta_,etaObj_+delta_,phiObj_-delta_,phiObj_+delta_);
60 
61  const std::vector<int> EC_FED_IDs=ec_mapping->GetListofFEDs(ecEtaPhi);
62 
63  const FEDRawDataCollection *rdc=rawIn.product();
64 
65  for ( int j=0; j< FEDNumbering::MAXFEDID; j++ )
66  {
67  bool rightFED=false;
68  for (uint32_t k=0; k<EC_FED_IDs.size(); k++)
69  {
70  if (j==EcalRegionCabling::fedIndex(EC_FED_IDs[k]))
71  {
72  if (!fedSaved[j])
73  {
74  fedList->AddFED(j);
75  rightFED=true;
76  fedSaved[j]=true;
77  }
78  }
79  }
81  {
82  fedSaved[j]=true;
83  rightFED=true;
84  }
85  if (!rightFED) continue;
86  const FEDRawData & fedData = rdc->FEDData(j);
87  size_t size=fedData.size();
88 
89  if ( size > 0 )
90  {
91  // this fed has data -- lets copy it
92  FEDRawData & fedDataProd = producedData->FEDData(j);
93  if ( fedDataProd.size() != 0 )
94  {
95 // std::cout << " More than one FEDRawDataCollection with data in FED ";
96 // std::cout << j << " Skipping the 2nd\n";
97  continue;
98  }
99  fedDataProd.resize(size);
100  unsigned char *dataProd=fedDataProd.data();
101  const unsigned char *data=fedData.data();
102  for ( unsigned int k=0; k<size; ++k )
103  {
104  dataProd[k]=data[k];
105  }
106  }
107 
108  }
109  }
110 
111  iEvent.put(std::move(producedData));
112  iEvent.put(std::move(fedList));
113 
114 }
115 
116 
118 }
119 
120 
122 }
size
Write out results.
T getParameter(std::string const &) const
edm::EDGetTokenT< FEDRawDataCollection > tok_raw_
~ECALRegFEDSelector() override
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
void beginJob() override
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > tok_seed_
ECALRegFEDSelector(const edm::ParameterSet &)
void endJob() override
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:47
static int fedIndex(const uint32_t index)
int iEvent
Definition: GenABIO.cc:230
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
std::unique_ptr< const EcalElectronicsMapping > ec_mapping
void resize(size_t newsize)
Definition: FEDRawData.cc:32
std::vector< unsigned int > const fedList
Definition: Constants.h:87
int k[5][pyjets_maxn]
T const * product() const
Definition: Handle.h:81
void produce(edm::Event &, const edm::EventSetup &) override
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:28
def move(src, dest)
Definition: eostools.py:510