Skip to content

Commit

Permalink
Lower case namespace and fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
makortel committed Jul 6, 2019
1 parent d66dcb1 commit 30dfc00
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RecoBTau/JetTagComputer/interface/JetTagComputerESProducer.h
Expand Up @@ -11,7 +11,7 @@
#include "RecoBTau/JetTagComputer/interface/JetTagComputer.h"

/**
* The idea here is to provide to implementations for
* The idea here is to provide two implementations for
* JetTagConmputerESProducer: one for those ConcreteJetTagComputers
* that consume ES products and thus need the ESGetTokens, and one for
* those that do not. All ConcreteJetTagComputers are required to have
Expand All @@ -26,7 +26,7 @@
* Those that do not need ESGetTokens should define the nested type as
* void, and in this case no further modifications are needed.
*/
namespace jetTagComputerESProducerImpl {
namespace jet_tag_computer_esproducer_impl {
template <typename ConcreteJetTagComputer, bool>
class JetTagComputerESProducer : public edm::ESProducer {
private:
Expand Down Expand Up @@ -72,10 +72,10 @@ namespace jetTagComputerESProducerImpl {
private:
const edm::ParameterSet m_pset;
};
} // namespace jetTagComputerESProducerImpl
} // namespace jet_tag_computer_esproducer_impl

template <typename T>
using JetTagComputerESProducer =
jetTagComputerESProducerImpl::JetTagComputerESProducer<T, std::is_same_v<typename T::Tokens, void>>;
jet_tag_computer_esproducer_impl::JetTagComputerESProducer<T, std::is_same_v<typename T::Tokens, void>>;

#endif // RecoBTau_JetTagComputerESProducer_h

0 comments on commit 30dfc00

Please sign in to comment.