CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TauDiscriminationProducerBase.cc
Go to the documentation of this file.
2 
3 #include <string>
4 
5 using namespace reco;
6 
7 // default constructor; must not be called
8 template<class TauType, class TauDiscriminator>
10 {
11  throw cms::Exception("TauDiscriminationProducerBase") << " -- default ctor called; derived classes must call " <<
12  "TauDiscriminationProducerBase(const ParameterSet&)";
13 }
14 
15 //--- standard constructor from PSet
16 template<class TauType, class TauDiscriminator>
18  : moduleLabel_(iConfig.getParameter<std::string>("@module_label"))
19 {
20  // tau collection to discriminate
21  TauProducer_ = iConfig.getParameter<edm::InputTag>(getProducerString<TauType>());
22  Tau_token= consumes<TauCollection>(TauProducer_);
23 
24  // prediscriminant operator
25  // require the tau to pass the following prediscriminants
26  const edm::ParameterSet& prediscriminantConfig = iConfig.getParameter<edm::ParameterSet>("Prediscriminants");
27 
28  // determine boolean operator used on the prediscriminants
29  std::string pdBoolOperator = prediscriminantConfig.getParameter<std::string>("BooleanOperator");
30  // convert string to lowercase
31  transform(pdBoolOperator.begin(), pdBoolOperator.end(), pdBoolOperator.begin(), ::tolower);
32 
33  if( pdBoolOperator == "and" )
34  {
35  andPrediscriminants_ = 0x1; //use chars instead of bools so we can do a bitwise trick later
36  }
37  else if ( pdBoolOperator == "or" )
38  {
40  }
41  else
42  {
43  throw cms::Exception("TauDiscriminationProducerBase") << "PrediscriminantBooleanOperator defined incorrectly, options are: AND,OR";
44  }
45 
46  // get the list of prediscriminants
47  std::vector<std::string> prediscriminantsNames = prediscriminantConfig.getParameterNamesForType<edm::ParameterSet>();
48 
49  for( std::vector<std::string>::const_iterator iDisc = prediscriminantsNames.begin();
50  iDisc != prediscriminantsNames.end(); ++iDisc )
51  {
52  const edm::ParameterSet& iPredisc = prediscriminantConfig.getParameter<edm::ParameterSet>(*iDisc);
53  const edm::InputTag& label = iPredisc.getParameter<edm::InputTag>("Producer");
54  double cut = iPredisc.getParameter<double>("cut");
55 
56  TauDiscInfo thisDiscriminator;
57  thisDiscriminator.label = label;
58  thisDiscriminator.cut = cut;
59  thisDiscriminator.disc_token = consumes<TauDiscriminator>(label);
60  prediscriminants_.push_back(thisDiscriminator);
61  }
62 
64 
65  // register product
66  produces<TauDiscriminator>();
67 }
68 
69 template<class TauType, class TauDiscriminator>
71 {
72  // setup function - does nothing in base, but can be overridden to retrieve PV or other stuff
73  beginEvent(event, eventSetup);
74 
75  // retrieve the tau collection to discriminate
77  event.getByToken(Tau_token, taus);
78 
79  edm::ProductID tauProductID = taus.id();
80 
81  // output product
82  std::auto_ptr<TauDiscriminator> output(new TauDiscriminator(TauRefProd(taus)));
83 
84  size_t nTaus = taus->size();
85 
86  // load prediscriminators
87  size_t nPrediscriminants = prediscriminants_.size();
88  for( size_t iDisc = 0; iDisc < nPrediscriminants; ++iDisc )
89  {
90  prediscriminants_[iDisc].fill(event);
91 
92  // Check to make sure the product is correct for the discriminator.
93  // If not, throw a more informative exception.
94  edm::ProductID discKeyId =
95  prediscriminants_[iDisc].handle->keyProduct().id();
96  if (tauProductID != discKeyId) {
97  throw cms::Exception("MisconfiguredPrediscriminant")
98  << "The tau collection with input tag " << TauProducer_
99  << " has product ID: " << tauProductID
100  << " but the pre-discriminator with input tag "
101  << prediscriminants_[iDisc].label
102  << " is keyed with product ID: " << discKeyId << std::endl;
103  }
104  }
105 
106  // loop over taus
107  for( size_t iTau = 0; iTau < nTaus; ++iTau )
108  {
109  // get reference to tau
110  TauRef tauRef(taus, iTau);
111 
112  bool passesPrediscriminants = ( andPrediscriminants_ ? 1 : 0 );
113  // check tau passes prediscriminants
114  for( size_t iDisc = 0; iDisc < nPrediscriminants; ++iDisc )
115  {
116  // current discriminant result for this tau
117  double discResult = (*prediscriminants_[iDisc].handle)[tauRef];
118  uint8_t thisPasses = ( discResult > prediscriminants_[iDisc].cut ) ? 1 : 0;
119 
120  // if we are using the AND option, as soon as one fails,
121  // the result is FAIL and we can quit looping.
122  // if we are using the OR option as soon as one passes,
123  // the result is pass and we can quit looping
124 
125  // truth table
126  // | result (thisPasses)
127  // | F | T
128  //-----------------------------------
129  // AND(T) | res=fails | continue
130  // | break |
131  //-----------------------------------
132  // OR (F) | continue | res=passes
133  // | | break
134 
135  if( thisPasses ^ andPrediscriminants_ ) //XOR
136  {
137  passesPrediscriminants = ( andPrediscriminants_ ? 0 : 1 ); //NOR
138  break;
139  }
140  }
141 
142  double result = prediscriminantFailValue_;
143  if( passesPrediscriminants )
144  {
145  // this tau passes the prereqs, call our implemented discrimination function
146  result = discriminate(tauRef);
147  }
148 
149  // store the result of this tau into our new discriminator
150  output->setValue(iTau, result);
151  }
152  event.put(output);
153 
154  // function to put additional information into the event - does nothing in base, but can be overridden in derived classes
155  endEvent(event);
156 }
157 
158 // template specialiazation to get the correct (Calo/PF)TauProducer names
159 template<> std::string getProducerString<PFTau>() { return "PFTauProducer"; }
160 template<> std::string getProducerString<CaloTau>() { return "CaloTauProducer"; }
161 
162 // compile our desired types and make available to linker
T getParameter(std::string const &) const
ProductID id() const
Definition: HandleBase.cc:15
std::string getProducerString< CaloTau >()
std::vector< TauDiscInfo > prediscriminants_
void produce(edm::Event &, const edm::EventSetup &)
tuple result
Definition: query.py:137
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
edm::EDGetTokenT< TauCollection > Tau_token
std::string getProducerString< PFTau >()
ProductIndex id() const
Definition: ProductID.h:38
moduleLabel_(iConfig.getParameter< string >("@module_label"))