CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Types | Private Member Functions | Private Attributes | Static Private Attributes | Friends
edm::Run Class Reference

#include <Run.h>

Inheritance diagram for edm::Run:
edm::RunBase

Public Types

typedef PrincipalGetAdapter Base
 
typedef unsigned long CacheIdentifier_t
 

Public Member Functions

CacheIdentifier_t cacheIdentifier () const
 
void getAllProvenance (std::vector< Provenance const * > &provenances) const
 
template<typename PROD >
bool getByLabel (std::string const &label, Handle< PROD > &result) const
 
template<typename PROD >
bool getByLabel (std::string const &label, std::string const &productInstanceName, Handle< PROD > &result) const
 
template<typename PROD >
bool getByLabel (InputTag const &tag, Handle< PROD > &result) const
 same as above, but using the InputTag class More...
 
template<typename PROD >
bool getByToken (EDGetToken token, Handle< PROD > &result) const
 
template<typename PROD >
bool getByToken (EDGetTokenT< PROD > token, Handle< PROD > &result) const
 
template<typename PROD >
void getManyByType (std::vector< Handle< PROD > > &results) const
 
Provenance getProvenance (BranchID const &theID) const
 
RunIndex index () const
 
ModuleCallingContext const * moduleCallingContext () const
 
ProcessHistory const & processHistory () const
 
ProcessHistoryID const & processHistoryID () const
 
template<typename PROD >
void put (std::auto_ptr< PROD > product)
 Put a new product. More...
 
template<typename PROD >
void put (std::unique_ptr< PROD > product)
 
template<typename PROD >
void put (std::auto_ptr< PROD > product, std::string const &productInstanceName)
 Put a new product with a 'product instance name'. More...
 
template<typename PROD >
void put (std::unique_ptr< PROD > product, std::string const &productInstanceName)
 
 Run (RunPrincipal &rp, ModuleDescription const &md, ModuleCallingContext const *)
 
RunAuxiliary const & runAuxiliary () const
 
void setConsumer (EDConsumerBase const *iConsumer)
 
 ~Run ()
 
- Public Member Functions inherited from edm::RunBase
Timestamp const & beginTime () const
 
Timestamp const & endTime () const
 
template<typename PROD >
bool getByLabel (InputTag const &tag, Handle< PROD > &result) const
 same as above, but using the InputTag class More...
 
template<typename T >
bool getByLabel (InputTag const &tag, Handle< T > &result) const
 
RunID const & id () const
 
RunNumber_t run () const
 
 RunBase ()
 
virtual ~RunBase ()
 

Private Types

typedef std::set< BranchIDBranchIDSet
 
typedef std::vector< std::pair
< std::unique_ptr< WrapperBase >
, BranchDescription const * > > 
ProductPtrVec
 

Private Member Functions

void addToGotBranchIDs (Provenance const &prov) const
 
void commit_ ()
 
virtual BasicHandle getByLabelImpl (std::type_info const &iWrapperType, std::type_info const &iProductType, InputTag const &iTag) const
 
ProductPtrVecputProducts ()
 
ProductPtrVec const & putProducts () const
 
RunPrincipal const & runPrincipal () const
 
RunPrincipalrunPrincipal ()
 

Private Attributes

RunAuxiliary const & aux_
 
BranchIDSet gotBranchIDs_
 
ModuleCallingContext const * moduleCallingContext_
 
PrincipalGetAdapter provRecorder_
 
ProductPtrVec putProducts_
 

Static Private Attributes

static const std::string emptyString_
 

Friends

class InputSource
 
class ProducerBase
 
class RawInputSource
 
template<typename T >
class stream::ProducingModuleAdaptorBase
 

Detailed Description

Definition at line 41 of file Run.h.

Member Typedef Documentation

Definition at line 53 of file Run.h.

typedef std::set<BranchID> edm::Run::BranchIDSet
private

Definition at line 174 of file Run.h.

typedef unsigned long edm::Run::CacheIdentifier_t

If you are caching data from the Run, you should also keep this number. If this number changes then you know that the data you have cached is invalid. The value of '0' will never be returned so you can use that to denote that you have not yet checked the value.

Definition at line 72 of file Run.h.

typedef std::vector<std::pair<std::unique_ptr<WrapperBase>, BranchDescription const*> > edm::Run::ProductPtrVec
private

Definition at line 155 of file Run.h.

Constructor & Destructor Documentation

Run::Run ( RunPrincipal rp,
ModuleDescription const &  md,
ModuleCallingContext const *  moduleCallingContext 
)

Definition at line 10 of file Run.cc.

11  :
12  provRecorder_(rp, md),
13  aux_(rp.aux()),
15  }
RunAuxiliary const & aux_
Definition: Run.h:173
ModuleCallingContext const * moduleCallingContext() const
Definition: Run.h:143
ModuleCallingContext const * moduleCallingContext_
Definition: Run.h:176
PrincipalGetAdapter provRecorder_
Definition: Run.h:171
Run::~Run ( )

Definition at line 17 of file Run.cc.

17  {
18  }

Member Function Documentation

void Run::addToGotBranchIDs ( Provenance const &  prov) const
private

Definition at line 108 of file Run.cc.

References edm::Provenance::branchID(), and gotBranchIDs_.

Referenced by getByLabelImpl().

108  {
109  gotBranchIDs_.insert(prov.branchID());
110  }
BranchIDSet gotBranchIDs_
Definition: Run.h:175
Run::CacheIdentifier_t Run::cacheIdentifier ( ) const

Definition at line 21 of file Run.cc.

References edm::Principal::cacheIdentifier(), and runPrincipal().

21 {return runPrincipal().cacheIdentifier();}
CacheIdentifier_t cacheIdentifier() const
Definition: Principal.h:169
RunPrincipal const & runPrincipal() const
Definition: Run.cc:31
void Run::commit_ ( )
private

Definition at line 83 of file Run.cc.

References begin, end, edm::RunPrincipal::put(), putProducts(), and runPrincipal().

Referenced by edm::stream::ProducingModuleAdaptorBase< EDProducerBase >::commit(), edm::InputSource::doBeginRun(), and edm::InputSource::doEndRun().

83  {
84  RunPrincipal& rp = runPrincipal();
85  ProductPtrVec::iterator pit(putProducts().begin());
86  ProductPtrVec::iterator pie(putProducts().end());
87 
88  while(pit != pie) {
89  rp.put(*pit->second, std::move(pit->first));
90  ++pit;
91  }
92 
93  // the cleanup is all or none
94  putProducts().clear();
95  }
#define end
Definition: vmac.h:37
RunPrincipal const & runPrincipal() const
Definition: Run.cc:31
ProductPtrVec & putProducts()
Definition: Run.h:156
#define begin
Definition: vmac.h:30
void Run::getAllProvenance ( std::vector< Provenance const * > &  provenances) const

Definition at line 41 of file Run.cc.

References edm::Principal::getAllProvenance(), and runPrincipal().

Referenced by GlobalHitsProdHistStripper::beginRun(), and L1GtUtils::getL1GtTriggerMenuLiteInputTag().

41  {
42  runPrincipal().getAllProvenance(provenances);
43  }
void getAllProvenance(std::vector< Provenance const * > &provenances) const
Definition: Principal.cc:769
RunPrincipal const & runPrincipal() const
Definition: Run.cc:31
template<typename PROD >
bool Run::getByLabel ( std::string const &  label,
Handle< PROD > &  result 
) const
template<typename PROD >
bool Run::getByLabel ( std::string const &  label,
std::string const &  productInstanceName,
Handle< PROD > &  result 
) const

Definition at line 220 of file Run.h.

References edm::PrincipalGetAdapter::checkIfComplete(), edm::HandleBase::clear(), edm::convert_handle(), emptyString_, edm::HandleBase::failedToGet(), edm::PrincipalGetAdapter::getByLabel_(), moduleCallingContext_, PROD, provRecorder_, and edm::principal_get_adapter_detail::throwOnPrematureRead().

222  {
224  principal_get_adapter_detail::throwOnPrematureRead("Run", TypeID(typeid(PROD)), label, productInstanceName);
225  }
226  result.clear();
227  BasicHandle bh = provRecorder_.getByLabel_(TypeID(typeid(PROD)), label, productInstanceName, emptyString_, moduleCallingContext_);
228  convert_handle(std::move(bh), result); // throws on conversion error
229  if (result.failedToGet()) {
230  return false;
231  }
232  return true;
233  }
static const std::string emptyString_
Definition: Run.h:178
BasicHandle getByLabel_(TypeID const &tid, InputTag const &tag, ModuleCallingContext const *mcc) const
void convert_handle(BasicHandle &&bh, Handle< T > &result)
Definition: ConvertHandle.h:20
#define PROD(A, B)
void throwOnPrematureRead(char const *principalType, TypeID const &productType, std::string const &moduleLabel, std::string const &productInstanceName)
ModuleCallingContext const * moduleCallingContext_
Definition: Run.h:176
PrincipalGetAdapter provRecorder_
Definition: Run.h:171
template<typename PROD >
bool Run::getByLabel ( InputTag const &  tag,
Handle< PROD > &  result 
) const

same as above, but using the InputTag class

Definition at line 238 of file Run.h.

References edm::PrincipalGetAdapter::checkIfComplete(), edm::HandleBase::clear(), edm::convert_handle(), edm::HandleBase::failedToGet(), edm::PrincipalGetAdapter::getByLabel_(), edm::InputTag::instance(), edm::InputTag::label(), moduleCallingContext_, PROD, provRecorder_, and edm::principal_get_adapter_detail::throwOnPrematureRead().

238  {
240  principal_get_adapter_detail::throwOnPrematureRead("Run", TypeID(typeid(PROD)), tag.label(), tag.instance());
241  }
242  result.clear();
243  BasicHandle bh = provRecorder_.getByLabel_(TypeID(typeid(PROD)), tag, moduleCallingContext_);
244  convert_handle(std::move(bh), result); // throws on conversion error
245  if (result.failedToGet()) {
246  return false;
247  }
248  return true;
249  }
BasicHandle getByLabel_(TypeID const &tid, InputTag const &tag, ModuleCallingContext const *mcc) const
void convert_handle(BasicHandle &&bh, Handle< T > &result)
Definition: ConvertHandle.h:20
#define PROD(A, B)
void throwOnPrematureRead(char const *principalType, TypeID const &productType, std::string const &moduleLabel, std::string const &productInstanceName)
ModuleCallingContext const * moduleCallingContext_
Definition: Run.h:176
PrincipalGetAdapter provRecorder_
Definition: Run.h:171
BasicHandle Run::getByLabelImpl ( std::type_info const &  iWrapperType,
std::type_info const &  iProductType,
InputTag const &  iTag 
) const
privatevirtual

Implements edm::RunBase.

Definition at line 113 of file Run.cc.

References addToGotBranchIDs(), edm::PrincipalGetAdapter::getByLabel_(), h, edm::BasicHandle::isValid(), moduleCallingContext_, edm::BasicHandle::provenance(), and provRecorder_.

113  {
114  BasicHandle h = provRecorder_.getByLabel_(TypeID(iProductType), iTag, moduleCallingContext_);
115  if(h.isValid()) {
116  addToGotBranchIDs(*(h.provenance()));
117  }
118  return h;
119  }
BasicHandle getByLabel_(TypeID const &tid, InputTag const &tag, ModuleCallingContext const *mcc) const
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
void addToGotBranchIDs(Provenance const &prov) const
Definition: Run.cc:108
ModuleCallingContext const * moduleCallingContext_
Definition: Run.h:176
PrincipalGetAdapter provRecorder_
Definition: Run.h:171
template<typename PROD >
bool Run::getByToken ( EDGetToken  token,
Handle< PROD > &  result 
) const

Definition at line 253 of file Run.h.

References edm::PrincipalGetAdapter::checkIfComplete(), edm::HandleBase::clear(), edm::convert_handle(), edm::HandleBase::failedToGet(), edm::PrincipalGetAdapter::getByToken_(), moduleCallingContext_, PROD, edm::PRODUCT_TYPE, provRecorder_, and edm::principal_get_adapter_detail::throwOnPrematureRead().

Referenced by HLTPrescaleRecorder::beginRun(), pat::PATTriggerEventProducer::beginRun(), RunHistogramManager::beginRun(), edm::GetterOfProducts< trigger::HLTPrescaleTable >::fillHandles(), and PrescaleWeightProvider::initRun().

253  {
255  principal_get_adapter_detail::throwOnPrematureRead("Run", TypeID(typeid(PROD)), token);
256  }
257  result.clear();
258  BasicHandle bh = provRecorder_.getByToken_(TypeID(typeid(PROD)),PRODUCT_TYPE, token, moduleCallingContext_);
259  convert_handle(std::move(bh), result); // throws on conversion error
260  if (result.failedToGet()) {
261  return false;
262  }
263  return true;
264  }
BasicHandle getByToken_(TypeID const &id, KindOfType kindOfType, EDGetToken token, ModuleCallingContext const *mcc) const
void convert_handle(BasicHandle &&bh, Handle< T > &result)
Definition: ConvertHandle.h:20
#define PROD(A, B)
void throwOnPrematureRead(char const *principalType, TypeID const &productType, std::string const &moduleLabel, std::string const &productInstanceName)
ModuleCallingContext const * moduleCallingContext_
Definition: Run.h:176
PrincipalGetAdapter provRecorder_
Definition: Run.h:171
template<typename PROD >
bool Run::getByToken ( EDGetTokenT< PROD token,
Handle< PROD > &  result 
) const

Definition at line 268 of file Run.h.

References edm::PrincipalGetAdapter::checkIfComplete(), edm::HandleBase::clear(), edm::convert_handle(), edm::HandleBase::failedToGet(), edm::PrincipalGetAdapter::getByToken_(), moduleCallingContext_, PROD, edm::PRODUCT_TYPE, provRecorder_, and edm::principal_get_adapter_detail::throwOnPrematureRead().

268  {
270  principal_get_adapter_detail::throwOnPrematureRead("Run", TypeID(typeid(PROD)), token);
271  }
272  result.clear();
273  BasicHandle bh = provRecorder_.getByToken_(TypeID(typeid(PROD)),PRODUCT_TYPE, token, moduleCallingContext_);
274  convert_handle(std::move(bh), result); // throws on conversion error
275  if (result.failedToGet()) {
276  return false;
277  }
278  return true;
279  }
BasicHandle getByToken_(TypeID const &id, KindOfType kindOfType, EDGetToken token, ModuleCallingContext const *mcc) const
void convert_handle(BasicHandle &&bh, Handle< T > &result)
Definition: ConvertHandle.h:20
#define PROD(A, B)
void throwOnPrematureRead(char const *principalType, TypeID const &productType, std::string const &moduleLabel, std::string const &productInstanceName)
ModuleCallingContext const * moduleCallingContext_
Definition: Run.h:176
PrincipalGetAdapter provRecorder_
Definition: Run.h:171
template<typename PROD >
void Run::getManyByType ( std::vector< Handle< PROD > > &  results) const

Definition at line 283 of file Run.h.

References edm::PrincipalGetAdapter::checkIfComplete(), edm::PrincipalGetAdapter::getManyByType(), moduleCallingContext_, PROD, provRecorder_, python.entryComment::results, and edm::principal_get_adapter_detail::throwOnPrematureRead().

Referenced by GlobalHitsProdHistStripper::endRun().

283  {
286  }
288  }
void getManyByType(std::vector< Handle< PROD > > &results, ModuleCallingContext const *mcc) const
#define PROD(A, B)
void throwOnPrematureRead(char const *principalType, TypeID const &productType, std::string const &moduleLabel, std::string const &productInstanceName)
ModuleCallingContext const * moduleCallingContext_
Definition: Run.h:176
PrincipalGetAdapter provRecorder_
Definition: Run.h:171
Provenance Run::getProvenance ( BranchID const &  theID) const

Definition at line 36 of file Run.cc.

References edm::Principal::getProvenance(), moduleCallingContext_, and runPrincipal().

36  {
38  }
Provenance getProvenance(BranchID const &bid, ModuleCallingContext const *mcc) const
Definition: Principal.cc:749
RunPrincipal const & runPrincipal() const
Definition: Run.cc:31
ModuleCallingContext const * moduleCallingContext_
Definition: Run.h:176
RunIndex Run::index ( ) const
Returns
Reusable index which can be used to separate data for different simultaneous Runs.

Definition at line 23 of file Run.cc.

References edm::RunPrincipal::index(), and runPrincipal().

Referenced by BeautifulSoup.PageElement::_invert().

23 { return runPrincipal().index();}
RunPrincipal const & runPrincipal() const
Definition: Run.cc:31
RunIndex index() const
Definition: RunPrincipal.h:53
ModuleCallingContext const* edm::Run::moduleCallingContext ( ) const
inline

Definition at line 143 of file Run.h.

References moduleCallingContext_.

Referenced by DQMEDAnalyzer::beginRun(), edm::PileUp::beginRun(), edm::PileUp::endRun(), and DQMEDAnalyzer::endRunSummary().

143 { return moduleCallingContext_; }
ModuleCallingContext const * moduleCallingContext_
Definition: Run.h:176
ProcessHistory const & Run::processHistory ( ) const
ProcessHistoryID const & Run::processHistoryID ( ) const

Definition at line 98 of file Run.cc.

References edm::Principal::processHistoryID(), and runPrincipal().

98  {
99  return runPrincipal().processHistoryID();
100  }
ProcessHistoryID const & processHistoryID() const
Definition: Principal.h:141
RunPrincipal const & runPrincipal() const
Definition: Run.cc:31
template<typename PROD >
void edm::Run::put ( std::auto_ptr< PROD product)
inline
template<typename PROD >
void edm::Run::put ( std::unique_ptr< PROD product)
inline

Definition at line 111 of file Run.h.

References AlCaHLTBitMon_QueryRunRegistry::string.

111 {put<PROD>(std::move(product), std::string());}
template<typename PROD >
void Run::put ( std::auto_ptr< PROD product,
std::string const &  productInstanceName 
)

Put a new product with a 'product instance name'.

Definition at line 183 of file Run.h.

References put().

183  {
184  put(std::unique_ptr<PROD>(product.release()),productInstanceName);
185  }
void put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Run.h:107
template<typename PROD >
void Run::put ( std::unique_ptr< PROD product,
std::string const &  productInstanceName 
)

Definition at line 189 of file Run.h.

References edm::PrincipalGetAdapter::getBranchDescription(), PROD, provRecorder_, putProducts(), edm::principal_get_adapter_detail::throwOnPutOfNullProduct(), and relativeConstraints::value.

189  {
190  if (product.get() == 0) { // null pointer is illegal
191  TypeID typeID(typeid(PROD));
192  principal_get_adapter_detail::throwOnPutOfNullProduct("Run", typeID, productInstanceName);
193  }
194 
195  // The following will call post_insert if T has such a function,
196  // and do nothing if T has no such function.
198  DoPostInsert<PROD>,
199  DoNotPostInsert<PROD> >::type maybe_inserter;
200  maybe_inserter(product.get());
201 
202  BranchDescription const& desc =
203  provRecorder_.getBranchDescription(TypeID(*product), productInstanceName);
204 
205  std::unique_ptr<Wrapper<PROD> > wp(new Wrapper<PROD>(std::move(product)));
206  putProducts().emplace_back(std::move(wp), &desc);
207 
208  // product.release(); // The object has been copied into the Wrapper.
209  // The old copy must be deleted, so we cannot release ownership.
210  }
type
Definition: HCALResponse.h:21
BranchDescription const & getBranchDescription(TypeID const &type, std::string const &productInstanceName) const
ProductPtrVec & putProducts()
Definition: Run.h:156
#define PROD(A, B)
void throwOnPutOfNullProduct(char const *principalType, TypeID const &productType, std::string const &productInstanceName)
PrincipalGetAdapter provRecorder_
Definition: Run.h:171
ProductPtrVec& edm::Run::putProducts ( )
inlineprivate

Definition at line 156 of file Run.h.

References putProducts_.

Referenced by commit_(), and put().

156 {return putProducts_;}
ProductPtrVec putProducts_
Definition: Run.h:172
ProductPtrVec const& edm::Run::putProducts ( ) const
inlineprivate

Definition at line 157 of file Run.h.

References putProducts_.

157 {return putProducts_;}
ProductPtrVec putProducts_
Definition: Run.h:172
RunAuxiliary const& edm::Run::runAuxiliary ( ) const
inlinevirtual

Implements edm::RunBase.

Definition at line 55 of file Run.h.

References aux_.

Referenced by edm::PileUp::beginRun(), L1GtUtils::getL1GtRunCache(), L1GtUtils::getL1GtTriggerMenuLiteInputTag(), and L1GtUtils::retrieveL1GtTriggerMenuLite().

55 {return aux_;}
RunAuxiliary const & aux_
Definition: Run.h:173
RunPrincipal const & Run::runPrincipal ( ) const
private

Definition at line 31 of file Run.cc.

References compareJSON::const, edm::PrincipalGetAdapter::principal(), and provRecorder_.

Referenced by cacheIdentifier(), commit_(), getAllProvenance(), getProvenance(), index(), and processHistoryID().

31  {
32  return dynamic_cast<RunPrincipal const&>(provRecorder_.principal());
33  }
string const
Definition: compareJSON.py:14
PrincipalGetAdapter provRecorder_
Definition: Run.h:171
RunPrincipal & Run::runPrincipal ( )
private

Definition at line 26 of file Run.cc.

References edm::PrincipalGetAdapter::principal(), and provRecorder_.

26  {
27  return dynamic_cast<RunPrincipal&>(provRecorder_.principal());
28  }
PrincipalGetAdapter provRecorder_
Definition: Run.h:171
void edm::Run::setConsumer ( EDConsumerBase const *  iConsumer)
inline

Definition at line 48 of file Run.h.

References provRecorder_, and edm::PrincipalGetAdapter::setConsumer().

Referenced by edm::EDAnalyzer::doBeginRun(), edm::EDProducer::doBeginRun(), edm::EDFilter::doBeginRun(), edm::one::EDFilterBase::doBeginRun(), edm::one::EDProducerBase::doBeginRun(), edm::one::EDAnalyzerBase::doBeginRun(), edm::global::EDAnalyzerBase::doBeginRun(), edm::global::EDFilterBase::doBeginRun(), edm::global::EDProducerBase::doBeginRun(), edm::stream::ProducingModuleAdaptor< T, M, B >::doBeginRun(), edm::stream::EDAnalyzerAdaptor< T >::doBeginRun(), edm::EDAnalyzer::doEndRun(), edm::EDProducer::doEndRun(), edm::EDFilter::doEndRun(), edm::one::EDFilterBase::doEndRun(), edm::one::EDProducerBase::doEndRun(), edm::one::EDAnalyzerBase::doEndRun(), edm::global::EDAnalyzerBase::doEndRun(), edm::global::EDFilterBase::doEndRun(), edm::global::EDProducerBase::doEndRun(), edm::stream::ProducingModuleAdaptor< T, M, B >::doEndRun(), edm::stream::EDAnalyzerAdaptor< T >::doEndRun(), edm::global::EDAnalyzerBase::doStreamBeginRun(), edm::global::EDFilterBase::doStreamBeginRun(), edm::global::EDProducerBase::doStreamBeginRun(), edm::global::EDAnalyzerBase::doStreamEndRun(), edm::global::EDFilterBase::doStreamEndRun(), edm::global::EDProducerBase::doStreamEndRun(), edm::stream::EDAnalyzerAdaptorBase::doStreamEndRun(), and edm::stream::ProducingModuleAdaptorBase< T >::doStreamEndRun().

48  {
49  provRecorder_.setConsumer(iConsumer);
50  }
void setConsumer(EDConsumerBase const *iConsumer)
PrincipalGetAdapter provRecorder_
Definition: Run.h:171

Friends And Related Function Documentation

friend class InputSource
friend

Definition at line 163 of file Run.h.

friend class ProducerBase
friend

Definition at line 165 of file Run.h.

friend class RawInputSource
friend

Definition at line 164 of file Run.h.

template<typename T >
friend class stream::ProducingModuleAdaptorBase
friend

Definition at line 166 of file Run.h.

Member Data Documentation

RunAuxiliary const& edm::Run::aux_
private

Definition at line 173 of file Run.h.

Referenced by runAuxiliary().

std::string const Run::emptyString_
staticprivate

Definition at line 178 of file Run.h.

Referenced by getByLabel().

BranchIDSet edm::Run::gotBranchIDs_
mutableprivate

Definition at line 175 of file Run.h.

Referenced by addToGotBranchIDs().

ModuleCallingContext const* edm::Run::moduleCallingContext_
private
PrincipalGetAdapter edm::Run::provRecorder_
private
ProductPtrVec edm::Run::putProducts_
private

Definition at line 172 of file Run.h.

Referenced by putProducts().