Skip to content

Commit

Permalink
Merge pull request cms-sw#9 from lgray/pyVID_and_newIDs_74X
Browse files Browse the repository at this point in the history
fix usage of _ in product name
  • Loading branch information
ikrav committed May 6, 2015
2 parents 7a72dfd + cbd84e0 commit 4cade6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PhysicsTools/SelectorUtils/interface/VersionedIdProducer.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class VersionedIdProducer : public edm::stream::EDProducer<> {
template< class PhysicsObjectPtr , class SelectorType >
VersionedIdProducer<PhysicsObjectPtr,SelectorType>::
VersionedIdProducer(const edm::ParameterSet& iConfig) {
constexpr char bitmap_label[] = "_bitmap";
constexpr char bitmap_label[] = "-bitmap";

verbose_ = iConfig.getUntrackedParameter<bool>("verbose", false);

Expand Down Expand Up @@ -118,7 +118,7 @@ VersionedIdProducer(const edm::ParameterSet& iConfig) {
template< class PhysicsObjectPtr , class SelectorType >
void VersionedIdProducer<PhysicsObjectPtr,SelectorType>::
produce(edm::Event& iEvent, const edm::EventSetup& iSetup) {
constexpr char bitmap_label[] = "_bitmap";
constexpr char bitmap_label[] = "-bitmap";

edm::Handle<Collection> physicsObjectsHandle;
iEvent.getByToken(physicsObjectSrc_,physicsObjectsHandle);
Expand Down

0 comments on commit 4cade6c

Please sign in to comment.