CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DataMixingSiStripRawWorker.cc
Go to the documentation of this file.
1 // File: DataMixingSiStripRawWorker.cc
2 // Description: see DataMixingSiStripRawWorker.h
3 // Author: Mike Hildreth, University of Notre Dame
4 //
5 //--------------------------------------------
6 
7 #include <map>
15 //
16 //
18 
19 using namespace std;
20 
21 namespace edm
22 {
23 
24  // Virtual constructor
25 
26  DataMixingSiStripRawWorker::DataMixingSiStripRawWorker() { }
27 
28  // Constructor
29  DataMixingSiStripRawWorker::DataMixingSiStripRawWorker(const edm::ParameterSet& ps) :
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 
52  }
53 
54 
55  // Virtual destructor needed.
57  }
58 
59 
60 
62 
63 
66 
67  if (SiStripRawDigiSource_=="SIGNAL") {
69  rawdigicollection_ = hSSRD.product();
70  } else if (SiStripRawDigiSource_=="PILEUP") {
72  digicollection_ = hSSD.product();
73  } else {
74  std::cout << "you shouldn't be here" << std::endl;
75  }
76 
77 
78  } // end of addSiStripSignals
79 
80 
81 
82  void DataMixingSiStripRawWorker::addSiStripPileups(const int bcr, const EventPrincipal *ep, unsigned int eventNr,
83  ModuleCallingContext const* mcc) {
84 
85  LogDebug("DataMixingSiStripRawWorker") << "\n===============> adding pileups from event "
86  << ep->id() << " for bunchcrossing " << bcr;
87 
88  boost::shared_ptr<Wrapper<edm::DetSetVector<SiStripDigi> > const> pSSD;
89  boost::shared_ptr<Wrapper<edm::DetSetVector<SiStripRawDigi> > const> pSSRD;
90 
91  if (SiStripRawDigiSource_=="SIGNAL") {
92  pSSD = getProductByTag<edm::DetSetVector<SiStripDigi> >(*ep, SiStripPileInputTag_, mcc);
93  digicollection_ = const_cast< edm::DetSetVector<SiStripDigi> * >(pSSD->product());
94  } else if (SiStripRawDigiSource_=="PILEUP") {
95  pSSRD = getProductByTag<edm::DetSetVector<SiStripRawDigi> >(*ep, SiStripRawInputTag_, mcc);
96  rawdigicollection_ = const_cast< edm::DetSetVector<SiStripRawDigi> * >(pSSRD->product());
97  } else {
98  std::cout << "you shouldn't be here" << std::endl;
99  }
100 
101  } // end of addSiStripPileups
102 
103 
105 
106 
107  //------------------
108  // (1) Fill a map from the Digi collection
109  //
110 
111  // fill in maps of SiStripDigis
112  OneDetectorMap LocalMap;
113 
114  //loop on all detsets (detectorIDs) inside the input collection
116  for (; DSViter!=digicollection_->end();DSViter++){
117 
118 #ifdef DEBUG
119  LogDebug("DataMixingSiStripRawWorker") << "Processing DetID " << DSViter->id;
120 #endif
121 
122  LocalMap.clear();
123  LocalMap.reserve((DSViter->data).size());
124  LocalMap.insert(LocalMap.end(),(DSViter->data).begin(),(DSViter->data).end());
125 
126  SiHitStorage_.insert( SiGlobalIndex::value_type( DSViter->id, LocalMap ) );
127  }
128 
129 
130  //------------------
131  // (2) Loop over the input RawDigi collection and add the Digis from the map
132  //
133 
134  // collection of RawDigis to put back in the event
135  std::vector< edm::DetSet<SiStripRawDigi> > vSiStripRawDigi;
136 
137  //loop on all detsets (detectorIDs) inside the SiStripRawDigis collection
139  for (; rawDSViter!=rawdigicollection_->end();rawDSViter++){
140 
141  // Make empty collection with this detID
142  edm::DetSet<SiStripRawDigi> SSRD(rawDSViter->id);
143 
144  // find local map (if it exists) for this detector ID
145  SiGlobalIndex::const_iterator itest;
146  itest = SiHitStorage_.find(rawDSViter->id);
147 
148  // if detID already has digis in existing map, add them to rawdigis
149  if(itest!=SiHitStorage_.end()) {
150 
151 #ifdef DEBUG
152  LogDebug("DataMixingSiStripRawWorker") << "Pileups: Processing DetID " << rawDSViter->id;
153 #endif
154 
155  // get the map from storage
156  LocalMap = itest->second;
157  OneDetectorMap::const_iterator iLocal = LocalMap.begin();
158 
159  // loop on all strips in rawdigi detset
160  int currentstrip=0;
161  edm::DetSet<SiStripRawDigi>::const_iterator iRawDigi = rawDSViter->begin();
162  while( iRawDigi != rawDSViter->end() ) {
163 
164  int ADCSum = iRawDigi->adc();
165 
166  // if current strip exists in map, add ADC values
167  if(iLocal->strip() == currentstrip) {
168  ADCSum += iLocal->adc();
169  iLocal++;
170  }
171 
172  // put ADC sum in DetSet and go to next strip
173  SSRD.push_back( SiStripRawDigi(ADCSum) );
174  iRawDigi++;
175  currentstrip++;
176 
177  }
178 
179  // copy combined digi+rawdigi into rawdigi DetSetVector
180  vSiStripRawDigi.push_back(SSRD);
181 
182  // otherwise, just copy the rawdigis from the background event to the output
183  } else {
184  vSiStripRawDigi.push_back(*rawDSViter);
185  }
186 
187  }
188 
189 
190  //------------------
191  // (3) Put the new RawDigi collection back into the event
192  //
193 
194  // make new raw digi collection
195  std::auto_ptr< edm::DetSetVector<SiStripRawDigi> > MySiStripRawDigis(new edm::DetSetVector<SiStripRawDigi>(vSiStripRawDigi) );
196 
197  // put collection
198  e.put( MySiStripRawDigis, SiStripDigiCollectionDM_ );
199 
200  // clear local storage for this event
201  SiHitStorage_.clear();
202  }
203 
204 }
#define LogDebug(id)
T getParameter(std::string const &) const
const edm::DetSetVector< SiStripDigi > * digicollection_
void push_back(const T &t)
Definition: DetSet.h:68
void addSiStripSignals(const edm::Event &e)
EventID const & id() const
std::vector< SiStripDigi > OneDetectorMap
void addSiStripPileups(const int bcr, const edm::EventPrincipal *, unsigned int EventId, ModuleCallingContext const *)
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
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:390
iterator end()
Return the off-the-end iterator.
Definition: DetSetVector.h:356
T const * product() const
Definition: Handle.h:81
std::string const & label() const
Definition: InputTag.h:42
void insert(detset const &s)
Insert the given DetSet.
Definition: DetSetVector.h:234
#define begin
Definition: vmac.h:30
tuple cout
Definition: gather_cfg.py:121
iterator begin()
Return an iterator to the first DetSet.
Definition: DetSetVector.h:341
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 ...