CMS 3D CMS Logo

DDTestVectors.cc
Go to the documentation of this file.
4 
5 #include <iostream>
6 
8 public:
9  explicit DDTestVectors(const edm::ParameterSet& ) {}
10 
11  void beginJob() override {}
12  void analyze(edm::Event const& iEvent, edm::EventSetup const&) override;
13  void endJob() override {}
14 };
15 
16 void
18 {
19  std::cout << "DDTestVectors::analyze:\n";
21 
22  std::cout << "DD Vector Registry size: " << registry->size() << "\n";
23  for( const auto& p: *registry ) {
24  std::cout << " " << p.first << " => ";
25  for( const auto& i : p.second )
26  std::cout << i << ", ";
27  std::cout << '\n';
28  }
29 }
30 
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
void analyze(edm::Event const &iEvent, edm::EventSetup const &) override
int iEvent
Definition: GenABIO.cc:230
void endJob() override
void beginJob() override
DDTestVectors(const edm::ParameterSet &)
Definition: DDTestVectors.cc:9
static Interceptor::Registry registry("Interceptor")