Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-06-20 01:53:18

0001 #include "FWCore/Framework/interface/maker/ModuleHolder.h"
0002 #include "FWCore/Utilities/interface/Exception.h"
0003 
0004 void edm::maker::ModuleHolder::registerThinnedAssociations(ProductRegistry const& registry,
0005                                                            ThinnedAssociationsHelper& helper) {
0006   try {
0007     implRegisterThinnedAssociations(registry, helper);
0008   } catch (cms::Exception& ex) {
0009     ex.addContext("Calling registerThinnedAssociations() for module " + moduleDescription().moduleLabel());
0010     throw ex;
0011   }
0012 }