CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
RHStopDump Class Reference

#include <RHStopDump.h>

Inheritance diagram for RHStopDump:
edm::one::EDAnalyzer< edm::one::SharedResources > edm::one::EDAnalyzerBase edm::EDConsumerBase

Public Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &) override
 
 RHStopDump (const edm::ParameterSet &)
 
virtual ~RHStopDump ()
 
- Public Member Functions inherited from edm::one::EDAnalyzer< edm::one::SharedResources >
 EDAnalyzer ()=default
 
- Public Member Functions inherited from edm::one::EDAnalyzerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDAnalyzerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

std::string mProducer
 
std::ofstream mStream
 

Additional Inherited Members

- Public Types inherited from edm::one::EDAnalyzerBase
typedef EDAnalyzerBase ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::one::EDAnalyzerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 12 of file RHStopDump.h.

Constructor & Destructor Documentation

RHStopDump::RHStopDump ( const edm::ParameterSet )
explicit

Definition at line 7 of file RHStopDump.cc.

8  : mStream (parameters.getParameter<std::string>("stoppedFile").c_str()),
9  mProducer (parameters.getUntrackedParameter<std::string>("producer", "g4SimHits"))
10 {}
std::ofstream mStream
Definition: RHStopDump.h:18
std::string mProducer
Definition: RHStopDump.h:19
virtual RHStopDump::~RHStopDump ( )
inlinevirtual

Definition at line 15 of file RHStopDump.h.

References analyze().

15 {};

Member Function Documentation

void RHStopDump::analyze ( const edm::Event fEvent,
const edm::EventSetup  
)
overridevirtual

Definition at line 12 of file RHStopDump.cc.

References edm::Event::getByLabel(), mps_fire::i, particleFlowDisplacedVertex_cfi::masses, mProducer, mStream, and cscdqm::h::names.

Referenced by ~RHStopDump().

12  {
14  fEvent.getByLabel (mProducer, "StoppedParticlesName", names);
16  fEvent.getByLabel (mProducer, "StoppedParticlesX", xs);
18  fEvent.getByLabel (mProducer, "StoppedParticlesY", ys);
20  fEvent.getByLabel (mProducer, "StoppedParticlesZ", zs);
22  fEvent.getByLabel (mProducer, "StoppedParticlesTime", ts);
24  fEvent.getByLabel (mProducer, "StoppedParticlesPdgId", ids);
26  fEvent.getByLabel (mProducer, "StoppedParticlesMass", masses);
28  fEvent.getByLabel (mProducer, "StoppedParticlesCharge", charges);
29 
30  if (names->size() != xs->size() || xs->size() != ys->size() || ys->size() != zs->size()) {
31  edm::LogError ("RHStopDump") << "mismatch array sizes name/x/y/z:"
32  << names->size() << '/' << xs->size() << '/' << ys->size() << '/' << zs->size()
33  << std::endl;
34  }
35  else {
36  for (size_t i = 0; i < names->size(); ++i) {
37  mStream << (*names)[i] << ' ' << (*xs)[i] << ' ' << (*ys)[i] << ' ' << (*zs)[i] << ' ' << (*ts)[i] << std::endl;
38  mStream << (*ids)[i] << ' ' << (*masses)[i] << ' ' << (*charges)[i] << std::endl;
39  }
40  }
41  }
static const HistoName names[]
std::ofstream mStream
Definition: RHStopDump.h:18
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:416
std::string mProducer
Definition: RHStopDump.h:19

Member Data Documentation

std::string RHStopDump::mProducer
private

Definition at line 19 of file RHStopDump.h.

Referenced by analyze().

std::ofstream RHStopDump::mStream
private

Definition at line 18 of file RHStopDump.h.

Referenced by analyze().