CMS 3D CMS Logo

List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
MuonDetCleaner< T1, T2 > Class Template Reference

#include <MuonDetCleaner.h>

Inheritance diagram for MuonDetCleaner< T1, T2 >:
edm::stream::EDProducer<>

Public Member Functions

 MuonDetCleaner (const edm::ParameterSet &)
 
 ~MuonDetCleaner () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Private Types

typedef edm::RangeMap< T1, edm::OwnVector< T2 > > RecHitCollection
 

Private Member Functions

bool checkrecHit (const TrackingRecHit &)
 
template<>
bool checkrecHit (const TrackingRecHit &recHit)
 
template<>
bool checkrecHit (const TrackingRecHit &recHit)
 
template<>
bool checkrecHit (const TrackingRecHit &recHit)
 
void fillVetoHits (const TrackingRecHit &, std::vector< uint32_t > *)
 
template<>
uint32_t getRawDetId (const CSCRecHit2D &recHit)
 
template<>
uint32_t getRawDetId (const DTRecHit1DPair &recHit)
 
template<>
uint32_t getRawDetId (const RPCRecHit &recHit)
 
uint32_t getRawDetId (const T2 &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

std::map< std::string, edm::EDGetTokenT< RecHitCollection > > inputs_
 
const edm::EDGetTokenT< edm::View< pat::Muon > > mu_input_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

template<typename T1, typename T2>
class MuonDetCleaner< T1, T2 >

Clean collections of hits in muon detectors (CSC, DT and RPC) for original Zmumu event and "embedded" simulated tau decay products

Author
Christian Veelken, LLR

Clean Up from STefan Wayand, KIT

Definition at line 35 of file MuonDetCleaner.h.

Member Typedef Documentation

◆ RecHitCollection

template<typename T1 , typename T2 >
typedef edm::RangeMap<T1, edm::OwnVector<T2> > MuonDetCleaner< T1, T2 >::RecHitCollection
private

Definition at line 43 of file MuonDetCleaner.h.

Constructor & Destructor Documentation

◆ MuonDetCleaner()

template<typename T1 , typename T2 >
MuonDetCleaner< T1, T2 >::MuonDetCleaner ( const edm::ParameterSet iConfig)
explicit

Definition at line 55 of file MuonDetCleaner.h.

56  : mu_input_(consumes<edm::View<pat::Muon> >(iConfig.getParameter<edm::InputTag>("MuonCollection"))) {
57  std::vector<edm::InputTag> inCollections = iConfig.getParameter<std::vector<edm::InputTag> >("oldCollection");
58  for (auto inCollection : inCollections) {
59  inputs_[inCollection.instance()] = consumes<RecHitCollection>(inCollection);
60  produces<RecHitCollection>(inCollection.instance());
61  }
62 }

References edm::ParameterSet::getParameter(), and MuonDetCleaner< T1, T2 >::inputs_.

◆ ~MuonDetCleaner()

template<typename T1 , typename T2 >
MuonDetCleaner< T1, T2 >::~MuonDetCleaner ( )
override

Definition at line 65 of file MuonDetCleaner.h.

65  {
66  // nothing to be done yet...
67 }

Member Function Documentation

◆ checkrecHit() [1/4]

template<typename T1 , typename T2 >
bool MuonDetCleaner< T1, T2 >::checkrecHit ( const TrackingRecHit recHit)
private

Definition at line 46 of file MuonDetCleaner.cc.

46  {
47  edm::LogError("TauEmbedding") << "!!!! Please add the checkrecHit for the individual class templates " assert(0);
48 }

References cms::cuda::assert().

◆ checkrecHit() [2/4]

template<>
bool MuonDetCleaner< CSCDetId, CSCRecHit2D >::checkrecHit ( const TrackingRecHit recHit)
private

Definition at line 51 of file MuonDetCleaner.cc.

51  {
52  const std::type_info& hit_type = typeid(recHit);
53  if (hit_type == typeid(CSCSegment)) {
54  return true;
55  } // This should be the default one (which are included in the global (outer) muon track)
56  else if (hit_type == typeid(CSCRecHit2D)) {
57  return true;
58  }
59  //else {std::cout<<"else "<<hit_type.name()<<std::endl;}
60  return false;
61 }

References rpcPointValidation_cfi::recHit.

◆ checkrecHit() [3/4]

template<>
bool MuonDetCleaner< DTLayerId, DTRecHit1DPair >::checkrecHit ( const TrackingRecHit recHit)
private

Definition at line 64 of file MuonDetCleaner.cc.

64  {
65  const std::type_info& hit_type = typeid(recHit);
66  if (hit_type == typeid(DTRecSegment4D)) {
67  return true;
68  } // This should be the default one (which are included in the global (outer) muon track)
69  else if (hit_type == typeid(DTRecHit1D)) {
70  return true;
71  } else if (hit_type == typeid(DTSLRecCluster)) {
72  return true;
73  } else if (hit_type == typeid(DTSLRecSegment2D)) {
74  return true;
75  }
76  // else {std::cout<<"else "<<hit_type.name()<<std::endl;}
77  return false;
78 }

References rpcPointValidation_cfi::recHit.

◆ checkrecHit() [4/4]

template<>
bool MuonDetCleaner< RPCDetId, RPCRecHit >::checkrecHit ( const TrackingRecHit recHit)
private

Definition at line 81 of file MuonDetCleaner.cc.

81  {
82  const std::type_info& hit_type = typeid(recHit);
83  if (hit_type == typeid(RPCRecHit)) {
84  return true;
85  } // This should be the default one (which are included in the global (outer) muon track)
86  //else {std::cout<<"else "<<hit_type.name()<<std::endl;}
87  return false;
88 }

References rpcPointValidation_cfi::recHit.

◆ fillVetoHits()

template<typename T1 , typename T2 >
void MuonDetCleaner< T1, T2 >::fillVetoHits ( const TrackingRecHit rh,
std::vector< uint32_t > *  HitsList 
)
private

Definition at line 132 of file MuonDetCleaner.h.

132  {
133  std::vector<const TrackingRecHit*> rh_components = rh.recHits();
134  if (rh_components.empty()) {
135  HitsList->push_back(rh.rawId());
136  } else {
137  for (std::vector<const TrackingRecHit*>::const_iterator rh_component = rh_components.begin();
138  rh_component != rh_components.end();
139  ++rh_component) {
140  fillVetoHits(**rh_component, HitsList);
141  }
142  }
143 }

References TrackingRecHit::rawId(), and TrackingRecHit::recHits().

◆ getRawDetId() [1/4]

template<>
uint32_t MuonDetCleaner< CSCDetId, CSCRecHit2D >::getRawDetId ( const CSCRecHit2D recHit)
private

Definition at line 27 of file MuonDetCleaner.cc.

27  {
28  return recHit.cscDetId().rawId();
29 }

References rpcPointValidation_cfi::recHit.

◆ getRawDetId() [2/4]

template<>
uint32_t MuonDetCleaner< DTLayerId, DTRecHit1DPair >::getRawDetId ( const DTRecHit1DPair recHit)
private

Definition at line 32 of file MuonDetCleaner.cc.

32  {
33  return recHit.geographicalId().rawId();
34 }

References rpcPointValidation_cfi::recHit.

◆ getRawDetId() [3/4]

template<>
uint32_t MuonDetCleaner< RPCDetId, RPCRecHit >::getRawDetId ( const RPCRecHit recHit)
private

Definition at line 37 of file MuonDetCleaner.cc.

37  {
38  return recHit.rpcId().rawId();
39 }

References rpcPointValidation_cfi::recHit.

◆ getRawDetId() [4/4]

template<typename T1 , typename T2 >
uint32_t MuonDetCleaner< T1, T2 >::getRawDetId ( const T2 &  recHit)
private

Definition at line 21 of file MuonDetCleaner.cc.

21  {
22  assert(0); // CV: make sure general function never gets called;
23  // always use template specializations
24 }

References cms::cuda::assert().

◆ produce()

template<typename T1 , typename T2 >
void MuonDetCleaner< T1, T2 >::produce ( edm::Event iEvent,
const edm::EventSetup es 
)
overrideprivate

Definition at line 70 of file MuonDetCleaner.h.

70  {
71  std::map<T1, std::vector<T2> > recHits_output; // This data format is easyer to handle
72  std::vector<uint32_t> vetoHits;
73 
74  // First fill the veto RecHits colletion with the Hits from the input muons
76  iEvent.getByToken(mu_input_, muonHandle);
77  edm::View<pat::Muon> muons = *muonHandle;
78  for (edm::View<pat::Muon>::const_iterator iMuon = muons.begin(); iMuon != muons.end(); ++iMuon) {
79  const reco::Track* track = nullptr;
80  if (iMuon->isGlobalMuon())
81  track = iMuon->outerTrack().get();
82  else if (iMuon->isStandAloneMuon())
83  track = iMuon->outerTrack().get();
84  else if (iMuon->isRPCMuon())
85  track = iMuon->innerTrack().get(); // To add, try to access the rpc track
86  else if (iMuon->isTrackerMuon())
87  track = iMuon->innerTrack().get();
88  else {
89  edm::LogError("TauEmbedding") << "The imput muon: " << (*iMuon)
90  << " must be either global or does or be tracker muon";
91  assert(0);
92  }
93 
94  for (trackingRecHit_iterator hitIt = track->recHitsBegin(); hitIt != track->recHitsEnd(); ++hitIt) {
95  const TrackingRecHit& murechit = **hitIt; // Base class for all rechits
96  if (!(murechit).isValid())
97  continue;
98  if (!checkrecHit(murechit))
99  continue; // Check if the hit belongs to a specifc detector section
100  fillVetoHits(murechit, &vetoHits); // Go back to the very basic rechits
101  }
102  }
103 
104  // Now this can also handle different instance
105  for (auto input_ : inputs_) {
106  // Second read in the RecHit Colltection which is to be replaced, without the vetoRecHits
107  typedef edm::Handle<RecHitCollection> RecHitCollectionHandle;
108  RecHitCollectionHandle RecHitinput;
109  iEvent.getByToken(input_.second, RecHitinput);
110  for (typename RecHitCollection::const_iterator recHit = RecHitinput->begin(); recHit != RecHitinput->end();
111  ++recHit) { // loop over the basic rec hit collection (DT CSC or RPC)
112  //if (find(vetoHits.begin(),vetoHits.end(),getRawDetId(*recHit)) == vetoHits.end()) continue; // For the invertec selcetion
113  if (find(vetoHits.begin(), vetoHits.end(), getRawDetId(*recHit)) != vetoHits.end())
114  continue; // If the hit is not in the
115  T1 detId(getRawDetId(*recHit));
116  recHits_output[detId].push_back(*recHit);
117  }
118 
119  // Last step savet the output in the CMSSW Data Format
120  std::unique_ptr<RecHitCollection> output(new RecHitCollection());
121  for (typename std::map<T1, std::vector<T2> >::const_iterator recHit = recHits_output.begin();
122  recHit != recHits_output.end();
123  ++recHit) {
124  output->put(recHit->first, recHit->second.begin(), recHit->second.end());
125  }
126  output->post_insert();
127  iEvent.put(std::move(output), input_.first);
128  }
129 }

References cms::cuda::assert(), spr::find(), iEvent, genParticles_cff::map, eostools::move(), PDWG_BPHSkim_cff::muons, convertSQLitetoXML_cfg::output, rpcPointValidation_cfi::recHit, and HLT_FULL_cff::track.

Member Data Documentation

◆ inputs_

template<typename T1 , typename T2 >
std::map<std::string, edm::EDGetTokenT<RecHitCollection> > MuonDetCleaner< T1, T2 >::inputs_
private

Definition at line 51 of file MuonDetCleaner.h.

Referenced by MuonDetCleaner< T1, T2 >::MuonDetCleaner().

◆ mu_input_

template<typename T1 , typename T2 >
const edm::EDGetTokenT<edm::View<pat::Muon> > MuonDetCleaner< T1, T2 >::mu_input_
private

Definition at line 49 of file MuonDetCleaner.h.

PDWG_BPHSkim_cff.muons
muons
Definition: PDWG_BPHSkim_cff.py:47
DTSLRecSegment2D
Definition: DTSLRecSegment2D.h:15
DTRecSegment4D
Definition: DTRecSegment4D.h:23
HLT_FULL_cff.track
track
Definition: HLT_FULL_cff.py:11713
TrackingRecHit::rawId
id_type rawId() const
Definition: TrackingRecHit.h:119
MuonDetCleaner::RecHitCollection
edm::RangeMap< T1, edm::OwnVector< T2 > > RecHitCollection
Definition: MuonDetCleaner.h:43
DTSLRecCluster
Definition: DTSLRecCluster.h:30
convertSQLitetoXML_cfg.output
output
Definition: convertSQLitetoXML_cfg.py:72
DTRecHit1D
Definition: DTRecHit1D.h:25
cms::cuda::assert
assert(be >=bs)
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
edm::Handle
Definition: AssociativeIterator.h:50
MuonDetCleaner::mu_input_
const edm::EDGetTokenT< edm::View< pat::Muon > > mu_input_
Definition: MuonDetCleaner.h:49
rpcPointValidation_cfi.recHit
recHit
Definition: rpcPointValidation_cfi.py:7
RPCRecHit
Definition: RPCRecHit.h:14
reco::Track
Definition: Track.h:27
CSCSegment
Definition: CSCSegment.h:21
edm::OwnVector::const_iterator
Definition: OwnVector.h:41
edm::View
Definition: CaloClusterFwd.h:14
CSCRecHit2D
Definition: CSCRecHit2D.h:18
edm::RangeMap::const_iterator
C::const_iterator const_iterator
constant access iterator type
Definition: RangeMap.h:43
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
TrackingRecHit::recHits
virtual std::vector< const TrackingRecHit * > recHits() const =0
Access to component RecHits (if any)
MuonDetCleaner::inputs_
std::map< std::string, edm::EDGetTokenT< RecHitCollection > > inputs_
Definition: MuonDetCleaner.h:51
TrackingRecHit
Definition: TrackingRecHit.h:21
MuonDetCleaner::fillVetoHits
void fillVetoHits(const TrackingRecHit &, std::vector< uint32_t > *)
Definition: MuonDetCleaner.h:132
eostools.move
def move(src, dest)
Definition: eostools.py:511
MuonDetCleaner::checkrecHit
bool checkrecHit(const TrackingRecHit &)
Definition: MuonDetCleaner.cc:46
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::View::const_iterator
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
genParticles_cff.map
map
Definition: genParticles_cff.py:11
MuonDetCleaner::getRawDetId
uint32_t getRawDetId(const T2 &)
Definition: MuonDetCleaner.cc:21
edm::InputTag
Definition: InputTag.h:15