CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackingTruthAccumulator.h
Go to the documentation of this file.
1 #ifndef TrackingAnalysis_TrackingTruthAccumulator_h
2 #define TrackingAnalysis_TrackingTruthAccumulator_h
3 
6 #include <memory> // required for std::auto_ptr
9 
10 
11 // Forward declarations
12 namespace edm
13 {
14  class ParameterSet;
15  class ConsumesCollector;
16  namespace one {
17  class EDProducerBase;
18  }
19  class Event;
20  class EventSetup;
21  class StreamID;
22 }
24 class PSimHit;
25 
26 
27 
76 {
77 public:
79 private:
80  virtual void initializeEvent( const edm::Event& event, const edm::EventSetup& setup );
81  virtual void accumulate( const edm::Event& event, const edm::EventSetup& setup );
82  virtual void accumulate( const PileUpEventPrincipal& event, const edm::EventSetup& setup, edm::StreamID const& );
83  virtual void finalizeEvent( edm::Event& event, const edm::EventSetup& setup );
84 
86  template<class T> void accumulateEvent( const T& event, const edm::EventSetup& setup, const edm::Handle< edm::HepMCProduct >& hepMCproduct );
87 
89  template<class T> void fillSimHits( std::vector<const PSimHit*>& returnValue, const T& event, const edm::EventSetup& setup );
90 
92 
93  const double volumeRadius_;
94  const double volumeZ_;
96  const double vertexDistanceCut_;
98 
101  const unsigned int maximumPreviousBunchCrossing_;
111  const bool addAncestors_;
112 
114  const bool removeDeadModules_;
117  std::vector<edm::InputTag> collectionTags_;
121 
128 
137 public:
138  // These always go hand in hand, and I need to pass them around in the internal
139  // functions, so I might as well package them up in a struct.
141  {
142  std::auto_ptr<TrackingParticleCollection> pTrackingParticles;
143  std::auto_ptr<TrackingVertexCollection> pTrackingVertices;
146  };
147 private:
150  std::auto_ptr<TrackingVertexCollection> pInitialVertices_;
151 };
152 
153 #endif // end of "#ifndef TrackingAnalysis_TrackingTruthAccumulator_h"
virtual void initializeEvent(const edm::Event &event, const edm::EventSetup &setup)
const bool removeDeadModules_
As of 11/Feb/2013 this option hasn&#39;t been implemented yet.
const bool addAncestors_
Whether or not to add the full parentage of any TrackingParticle that is inserted in the collection...
const double vertexDistanceCut_
maximum distance for HepMC::GenVertex to be added to SimVertex
bool signalOnly_
Uses the same config as selector_, but can be used to drop out early since selector_ requires the Tra...
void fillSimHits(std::vector< const PSimHit * > &returnValue, const T &event, const edm::EventSetup &setup)
Fills the supplied vector with pointers to the SimHits, checking for bad modules if required...
const unsigned int maximumSubsequentBunchCrossing_
void accumulateEvent(const T &event, const edm::EventSetup &setup, const edm::Handle< edm::HepMCProduct > &hepMCproduct)
Both forms of accumulate() delegate to this templated method.
virtual void finalizeEvent(edm::Event &event, const edm::EventSetup &setup)
const std::string messageCategory_
The message category used to send messages to MessageLogger.
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
bool allowDifferentProcessTypeForDifferentDetectors_
When counting hits, allows hits in different detectors to have a different process type...
std::auto_ptr< TrackingParticleCollection > pTrackingParticles
virtual void accumulate(const edm::Event &event, const edm::EventSetup &setup)
std::auto_ptr< TrackingVertexCollection > pInitialVertices_
const bool createInitialVertexCollection_
Whether or not to create a separate collection for just the initial interaction vertices.
std::auto_ptr< TrackingVertexCollection > pTrackingVertices
const unsigned int maximumPreviousBunchCrossing_
bool chargedOnly_
Uses the same config as selector_, but can be used to drop out early since selector_ requires the Tra...
const bool createUnmergedCollection_
If bremsstrahlung merging, whether to also add the unmerged collection to the event or not...
TrackingParticleSelector selector_
TrackingTruthAccumulator(const edm::ParameterSet &config, edm::one::EDProducerBase &mixMod, edm::ConsumesCollector &iC)
Replacement for TrackingTruthProducer in the new pileup mixing setup.
long double T
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
edm::InputTag hepMCproductLabel_
Needed to add HepMC::GenVertex to SimVertex.
std::vector< edm::InputTag > collectionTags_