CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros 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 39 of file DataMixingSiStripRawWorker.h.

Member Typedef Documentation

Definition at line 71 of file DataMixingSiStripRawWorker.h.

Definition at line 72 of file DataMixingSiStripRawWorker.h.

Constructor & Destructor Documentation

DataMixingSiStripRawWorker::DataMixingSiStripRawWorker ( )

Definition at line 26 of file DataMixingSiStripRawWorker.cc.

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

standard constructor

Definition at line 29 of file DataMixingSiStripRawWorker.cc.

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

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

Default destructor

Definition at line 61 of file DataMixingSiStripRawWorker.cc.

61  {
62  }

Member Function Documentation

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

Definition at line 87 of file DataMixingSiStripRawWorker.cc.

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

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

88  {
89 
90  LogDebug("DataMixingSiStripRawWorker") << "\n===============> adding pileups from event "
91  << ep->id() << " for bunchcrossing " << bcr;
92 
93  boost::shared_ptr<Wrapper<edm::DetSetVector<SiStripDigi> > const> pSSD;
94  boost::shared_ptr<Wrapper<edm::DetSetVector<SiStripRawDigi> > const> pSSRD;
95 
96  if (SiStripRawDigiSource_=="SIGNAL") {
97  pSSD = getProductByTag<edm::DetSetVector<SiStripDigi> >(*ep, SiStripPileInputTag_, mcc);
98  digicollection_ = const_cast< edm::DetSetVector<SiStripDigi> * >(pSSD->product());
99  } else if (SiStripRawDigiSource_=="PILEUP") {
100  pSSRD = getProductByTag<edm::DetSetVector<SiStripRawDigi> >(*ep, SiStripRawInputTag_, mcc);
101  rawdigicollection_ = const_cast< edm::DetSetVector<SiStripRawDigi> * >(pSSRD->product());
102  } else {
103  std::cout << "you shouldn't be here" << std::endl;
104  }
105 
106  } // end of addSiStripPileups
#define LogDebug(id)
const edm::DetSetVector< SiStripDigi > * digicollection_
EventID const & id() const
tuple cout
Definition: gather_cfg.py:121
const edm::DetSetVector< SiStripRawDigi > * rawdigicollection_
void DataMixingSiStripRawWorker::addSiStripSignals ( const edm::Event e)

Definition at line 66 of file DataMixingSiStripRawWorker.cc.

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

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

66  {
67 
68 
71 
72  if (SiStripRawDigiSource_=="SIGNAL") {
74  rawdigicollection_ = hSSRD.product();
75  } else if (SiStripRawDigiSource_=="PILEUP") {
77  digicollection_ = hSSD.product();
78  } //else {
79  //std::cout << "you shouldn't be here" << std::endl;
80  //}
81 
82 
83  } // end of addSiStripSignals
const edm::DetSetVector< SiStripDigi > * digicollection_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
edm::EDGetTokenT< edm::DetSetVector< SiStripDigi > > SiStripInputTok_
T const * product() const
Definition: Handle.h:81
edm::EDGetTokenT< edm::DetSetVector< SiStripRawDigi > > SiStripRawInputTok_
const edm::DetSetVector< SiStripRawDigi > * rawdigicollection_
void DataMixingSiStripRawWorker::putSiStrip ( edm::Event e)

Definition at line 109 of file DataMixingSiStripRawWorker.cc.

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

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

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

Member Data Documentation

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

Definition at line 77 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 78 of file DataMixingSiStripRawWorker.h.

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

SiGlobalIndex edm::DataMixingSiStripRawWorker::SiHitStorage_
private

Definition at line 74 of file DataMixingSiStripRawWorker.h.

Referenced by DataMixingSiStripRawWorker(), and putSiStrip().

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

Definition at line 60 of file DataMixingSiStripRawWorker.h.

Referenced by DataMixingSiStripRawWorker().

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

Definition at line 66 of file DataMixingSiStripRawWorker.h.

Referenced by DataMixingSiStripRawWorker(), and putSiStrip().

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

Definition at line 64 of file DataMixingSiStripRawWorker.h.

Referenced by addSiStripSignals(), and DataMixingSiStripRawWorker().

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

Definition at line 61 of file DataMixingSiStripRawWorker.h.

Referenced by DataMixingSiStripRawWorker().

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

Definition at line 62 of file DataMixingSiStripRawWorker.h.

Referenced by addSiStripPileups(), and DataMixingSiStripRawWorker().

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

Definition at line 63 of file DataMixingSiStripRawWorker.h.

Referenced by addSiStripPileups(), and DataMixingSiStripRawWorker().

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

Definition at line 65 of file DataMixingSiStripRawWorker.h.

Referenced by addSiStripSignals(), and DataMixingSiStripRawWorker().