CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Types | Private Attributes
edm::DataMixingSiStripRawWorker Class Reference

#include <DataMixingSiStripRawWorker.h>

Public Member Functions

void addSiStripPileups (const int bcr, const edm::EventPrincipal *, unsigned int EventId, ModuleCallingContext const *)
 
void addSiStripSignals (const edm::Event &e)
 
 DataMixingSiStripRawWorker ()
 
 DataMixingSiStripRawWorker (const edm::ParameterSet &ps, edm::ConsumesCollector &&iC)
 
void putSiStrip (edm::Event &e)
 
virtual ~DataMixingSiStripRawWorker ()
 

Private Types

typedef std::vector< SiStripDigiOneDetectorMap
 
typedef std::map< uint32_t,
OneDetectorMap
SiGlobalIndex
 

Private Attributes

const edm::DetSetVector
< SiStripDigi > * 
digicollection_
 
std::string label_
 
const edm::DetSetVector
< SiStripRawDigi > * 
rawdigicollection_
 
SiGlobalIndex SiHitStorage_
 
edm::InputTag Sistripdigi_collectionSig_
 
std::string SiStripDigiCollectionDM_
 
edm::EDGetTokenT
< edm::DetSetVector
< SiStripDigi > > 
SiStripInputTok_
 
edm::InputTag SistripLabelSig_
 
edm::InputTag SiStripPileInputTag_
 
std::string SiStripRawDigiSource_
 
edm::InputTag SiStripRawInputTag_
 
edm::EDGetTokenT
< edm::DetSetVector
< SiStripRawDigi > > 
SiStripRawInputTok_
 

Detailed Description

Definition at line 37 of file DataMixingSiStripRawWorker.h.

Member Typedef Documentation

Definition at line 71 of file DataMixingSiStripRawWorker.h.

Definition at line 73 of file DataMixingSiStripRawWorker.h.

Constructor & Destructor Documentation

DataMixingSiStripRawWorker::DataMixingSiStripRawWorker ( )

Definition at line 21 of file DataMixingSiStripRawWorker.cc.

21 {}
DataMixingSiStripRawWorker::DataMixingSiStripRawWorker ( const edm::ParameterSet ps,
edm::ConsumesCollector &&  iC 
)
explicit

standard constructor

Definition at line 24 of file DataMixingSiStripRawWorker.cc.

References edm::ParameterSet::getParameter(), HLT_FULL_cff::InputTag, edm::InputTag::label(), SiHitStorage_, Sistripdigi_collectionSig_, SiStripDigiCollectionDM_, SiStripInputTok_, SistripLabelSig_, SiStripPileInputTag_, SiStripRawDigiSource_, SiStripRawInputTag_, SiStripRawInputTok_, AlCaHLTBitMon_QueryRunRegistry::string, and GlobalPosition_Frontier_DevDB_cff::tag.

25  : label_(ps.getParameter<std::string>("Label"))
26 
27  {
28  // get the subdetector names
29  // this->getSubdetectorNames(); //something like this may be useful to
30  // check what we are supposed to do...
31 
32  // declare the products to produce
33 
34  Sistripdigi_collectionSig_ = ps.getParameter<edm::InputTag>("SistripdigiCollectionSig");
35  SistripLabelSig_ = ps.getParameter<edm::InputTag>("SistripLabelSig");
36 
37  SiStripPileInputTag_ = ps.getParameter<edm::InputTag>("SiStripPileInputTag");
38  SiStripRawInputTag_ = ps.getParameter<edm::InputTag>("SiStripRawInputTag");
39 
40  SiStripDigiCollectionDM_ = ps.getParameter<std::string>("SiStripDigiCollectionDM");
41 
42  SiStripRawDigiSource_ = ps.getParameter<std::string>("SiStripRawDigiSource");
43 
44  // clear local storage for this event
45  SiHitStorage_.clear();
46 
48 
51  }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
edm::EDGetTokenT< edm::DetSetVector< SiStripDigi > > SiStripInputTok_
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::EDGetTokenT< edm::DetSetVector< SiStripRawDigi > > SiStripRawInputTok_
std::string const & label() const
Definition: InputTag.h:36
DataMixingSiStripRawWorker::~DataMixingSiStripRawWorker ( )
virtual

Default destructor

Definition at line 54 of file DataMixingSiStripRawWorker.cc.

54 {}

Member Function Documentation

void DataMixingSiStripRawWorker::addSiStripPileups ( const int  bcr,
const edm::EventPrincipal ep,
unsigned int  EventId,
ModuleCallingContext const *  mcc 
)

Definition at line 72 of file DataMixingSiStripRawWorker.cc.

References gather_cfg::cout, digicollection_, edm::EventPrincipal::id(), LogDebug, rawdigicollection_, SiStripPileInputTag_, SiStripRawDigiSource_, and SiStripRawInputTag_.

Referenced by edm::DataMixingModule::pileWorker().

75  {
76  LogDebug("DataMixingSiStripRawWorker")
77  << "\n===============> adding pileups from event " << ep->id() << " for bunchcrossing " << bcr;
78 
79  std::shared_ptr<Wrapper<edm::DetSetVector<SiStripDigi>> const> pSSD;
80  std::shared_ptr<Wrapper<edm::DetSetVector<SiStripRawDigi>> const> pSSRD;
81 
82  if (SiStripRawDigiSource_ == "SIGNAL") {
83  pSSD = getProductByTag<edm::DetSetVector<SiStripDigi>>(*ep, SiStripPileInputTag_, mcc);
84  digicollection_ = const_cast<edm::DetSetVector<SiStripDigi> *>(pSSD->product());
85  } else if (SiStripRawDigiSource_ == "PILEUP") {
86  pSSRD = getProductByTag<edm::DetSetVector<SiStripRawDigi>>(*ep, SiStripRawInputTag_, mcc);
87  rawdigicollection_ = const_cast<edm::DetSetVector<SiStripRawDigi> *>(pSSRD->product());
88  } else {
89  std::cout << "you shouldn't be here" << std::endl;
90  }
91 
92  } // end of addSiStripPileups
const edm::DetSetVector< SiStripDigi > * digicollection_
EventID const & id() const
tuple cout
Definition: gather_cfg.py:144
const edm::DetSetVector< SiStripRawDigi > * rawdigicollection_
#define LogDebug(id)
void DataMixingSiStripRawWorker::addSiStripSignals ( const edm::Event e)

Definition at line 56 of file DataMixingSiStripRawWorker.cc.

References digicollection_, edm::Event::getByToken(), edm::Handle< T >::product(), rawdigicollection_, SiStripInputTok_, SiStripRawDigiSource_, and SiStripRawInputTok_.

Referenced by edm::DataMixingModule::addSignals().

56  {
59 
60  if (SiStripRawDigiSource_ == "SIGNAL") {
62  rawdigicollection_ = hSSRD.product();
63  } else if (SiStripRawDigiSource_ == "PILEUP") {
65  digicollection_ = hSSD.product();
66  } // else {
67  // std::cout << "you shouldn't be here" << std::endl;
68  //}
69 
70  } // end of addSiStripSignals
const edm::DetSetVector< SiStripDigi > * digicollection_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
edm::EDGetTokenT< edm::DetSetVector< SiStripDigi > > SiStripInputTok_
T const * product() const
Definition: Handle.h:70
edm::EDGetTokenT< edm::DetSetVector< SiStripRawDigi > > SiStripRawInputTok_
const edm::DetSetVector< SiStripRawDigi > * rawdigicollection_
void DataMixingSiStripRawWorker::putSiStrip ( edm::Event e)

Definition at line 94 of file DataMixingSiStripRawWorker.cc.

References SplitLinear::begin, edm::DetSetVector< T >::begin(), digicollection_, edm::DetSetVector< T >::end(), dataset::end, LogDebug, eostools::move(), edm::DetSet< T >::push_back(), edm::Event::put(), rawdigicollection_, edm::DetSetVector< T >::reserve(), SiHitStorage_, and SiStripDigiCollectionDM_.

Referenced by edm::DataMixingModule::put().

94  {
95  //------------------
96  // (1) Fill a map from the Digi collection
97  //
98 
99  // fill in maps of SiStripDigis
100  OneDetectorMap LocalMap;
101 
102  // loop on all detsets (detectorIDs) inside the input collection
104  for (; DSViter != digicollection_->end(); DSViter++) {
105 #ifdef DEBUG
106  LogDebug("DataMixingSiStripRawWorker") << "Processing DetID " << DSViter->id;
107 #endif
108 
109  LocalMap.clear();
110  LocalMap.reserve((DSViter->data).size());
111  LocalMap.insert(LocalMap.end(), (DSViter->data).begin(), (DSViter->data).end());
112 
113  SiHitStorage_.insert(SiGlobalIndex::value_type(DSViter->id, LocalMap));
114  }
115 
116  //------------------
117  // (2) Loop over the input RawDigi collection and add the Digis from the map
118  //
119 
120  // collection of RawDigis to put back in the event
121  std::vector<edm::DetSet<SiStripRawDigi>> vSiStripRawDigi;
122 
123  // loop on all detsets (detectorIDs) inside the SiStripRawDigis collection
125  for (; rawDSViter != rawdigicollection_->end(); rawDSViter++) {
126  // Make empty collection with this detID
127  edm::DetSet<SiStripRawDigi> SSRD(rawDSViter->id);
128 
129  // find local map (if it exists) for this detector ID
130  SiGlobalIndex::const_iterator itest;
131  itest = SiHitStorage_.find(rawDSViter->id);
132 
133  // if detID already has digis in existing map, add them to rawdigis
134  if (itest != SiHitStorage_.end()) {
135 #ifdef DEBUG
136  LogDebug("DataMixingSiStripRawWorker") << "Pileups: Processing DetID " << rawDSViter->id;
137 #endif
138 
139  // get the map from storage
140  LocalMap = itest->second;
141  OneDetectorMap::const_iterator iLocal = LocalMap.begin();
142 
143  // loop on all strips in rawdigi detset
144  int currentstrip = 0;
145  edm::DetSet<SiStripRawDigi>::const_iterator iRawDigi = rawDSViter->begin();
146  while (iRawDigi != rawDSViter->end()) {
147  int ADCSum = iRawDigi->adc();
148 
149  // if current strip exists in map, add ADC values
150  if (iLocal->strip() == currentstrip) {
151  ADCSum += iLocal->adc();
152  iLocal++;
153  }
154 
155  // put ADC sum in DetSet and go to next strip
156  SSRD.push_back(SiStripRawDigi(ADCSum));
157  iRawDigi++;
158  currentstrip++;
159  }
160 
161  // copy combined digi+rawdigi into rawdigi DetSetVector
162  vSiStripRawDigi.push_back(SSRD);
163 
164  // otherwise, just copy the rawdigis from the background event to the
165  // output
166  } else {
167  vSiStripRawDigi.push_back(*rawDSViter);
168  }
169  }
170 
171  //------------------
172  // (3) Put the new RawDigi collection back into the event
173  //
174 
175  // make new raw digi collection
176  std::unique_ptr<edm::DetSetVector<SiStripRawDigi>> MySiStripRawDigis(
177  new edm::DetSetVector<SiStripRawDigi>(vSiStripRawDigi));
178 
179  // put collection
180  e.put(std::move(MySiStripRawDigis), SiStripDigiCollectionDM_);
181 
182  // clear local storage for this event
183  SiHitStorage_.clear();
184  }
const edm::DetSetVector< SiStripDigi > * digicollection_
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
void push_back(const T &t)
Definition: DetSet.h:66
void reserve(size_t s)
Definition: DetSetVector.h:147
std::vector< SiStripDigi > OneDetectorMap
def move
Definition: eostools.py:511
iterator end()
Return the off-the-end iterator.
Definition: DetSetVector.h:325
string end
Definition: dataset.py:937
iterator begin()
Return an iterator to the first DetSet.
Definition: DetSetVector.h:314
collection_type::const_iterator const_iterator
Definition: DetSet.h:31
collection_type::const_iterator const_iterator
Definition: DetSetVector.h:102
const edm::DetSetVector< SiStripRawDigi > * rawdigicollection_
A Digi for the silicon strip detector, containing only adc information, and suitable for storing raw ...
#define LogDebug(id)

Member Data Documentation

const edm::DetSetVector<SiStripDigi>* edm::DataMixingSiStripRawWorker::digicollection_
private

Definition at line 78 of file DataMixingSiStripRawWorker.h.

Referenced by addSiStripPileups(), addSiStripSignals(), and putSiStrip().

std::string edm::DataMixingSiStripRawWorker::label_
private
const edm::DetSetVector<SiStripRawDigi>* edm::DataMixingSiStripRawWorker::rawdigicollection_
private

Definition at line 79 of file DataMixingSiStripRawWorker.h.

Referenced by addSiStripPileups(), addSiStripSignals(), and putSiStrip().

SiGlobalIndex edm::DataMixingSiStripRawWorker::SiHitStorage_
private

Definition at line 75 of file DataMixingSiStripRawWorker.h.

Referenced by DataMixingSiStripRawWorker(), and putSiStrip().

edm::InputTag edm::DataMixingSiStripRawWorker::Sistripdigi_collectionSig_
private

Definition at line 57 of file DataMixingSiStripRawWorker.h.

Referenced by DataMixingSiStripRawWorker().

std::string edm::DataMixingSiStripRawWorker::SiStripDigiCollectionDM_
private

Definition at line 64 of file DataMixingSiStripRawWorker.h.

Referenced by DataMixingSiStripRawWorker(), and putSiStrip().

edm::EDGetTokenT<edm::DetSetVector<SiStripDigi> > edm::DataMixingSiStripRawWorker::SiStripInputTok_
private

Definition at line 62 of file DataMixingSiStripRawWorker.h.

Referenced by addSiStripSignals(), and DataMixingSiStripRawWorker().

edm::InputTag edm::DataMixingSiStripRawWorker::SistripLabelSig_
private

Definition at line 59 of file DataMixingSiStripRawWorker.h.

Referenced by DataMixingSiStripRawWorker().

edm::InputTag edm::DataMixingSiStripRawWorker::SiStripPileInputTag_
private

Definition at line 60 of file DataMixingSiStripRawWorker.h.

Referenced by addSiStripPileups(), and DataMixingSiStripRawWorker().

std::string edm::DataMixingSiStripRawWorker::SiStripRawDigiSource_
private
edm::InputTag edm::DataMixingSiStripRawWorker::SiStripRawInputTag_
private

Definition at line 61 of file DataMixingSiStripRawWorker.h.

Referenced by addSiStripPileups(), and DataMixingSiStripRawWorker().

edm::EDGetTokenT<edm::DetSetVector<SiStripRawDigi> > edm::DataMixingSiStripRawWorker::SiStripRawInputTok_
private

Definition at line 63 of file DataMixingSiStripRawWorker.h.

Referenced by addSiStripSignals(), and DataMixingSiStripRawWorker().