|
35 | 35 | // |
36 | 36 |
|
37 | 37 | @example_globalstruct Histograms___class__ { |
38 | | -@example_global ConcurrentMonitorElement histo_; |
| 38 | +@example_global dqm::reco::MonitorElement* histo_; |
39 | 39 | @example_global}; |
40 | 40 |
|
41 | 41 | @example_streamclass __class__ : public DQMEDAnalyzer { |
|
48 | 48 |
|
49 | 49 | private: |
50 | 50 | @example_stream void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override; |
51 | | -@example_global void bookHistograms(DQMStore::ConcurrentBooker&, |
| 51 | +@example_global void bookHistograms(DQMStore::IBooker&, |
52 | 52 | @example_global edm::Run const&, |
53 | 53 | @example_global edm::EventSetup const&, |
54 | 54 | @example_global Histograms___class__&) const override; |
@@ -117,11 +117,11 @@ __class__::~__class__() { |
117 | 117 | @example_globalvoid __class__::dqmAnalyze(edm::Event const& iEvent, |
118 | 118 | @example_global edm::EventSetup const& iSetup, |
119 | 119 | @example_global Histograms___class__ const& histos) const { |
120 | | -@example_global foo(); |
| 120 | +@example_global histos.histo_->Fill(1.); |
121 | 121 | @example_global} |
122 | 122 | @example_global |
123 | 123 |
|
124 | | -@example_globalvoid __class__::bookHistograms(DQMStore::ConcurrentBooker& ibook, |
| 124 | +@example_globalvoid __class__::bookHistograms(DQMStore::IBooker& ibook, |
125 | 125 | @example_global edm::Run const& run, |
126 | 126 | @example_global edm::EventSetup const& iSetup, |
127 | 127 | @example_global Histograms___class__& histos) const { |
|
0 commit comments