ATLAS Offline Software
DijetMassCondition.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include "./DijetMassCondition.h"
7 #include <sstream>
8 #include <stdexcept>
9 #include <TLorentzVector.h>
10 #include <limits>
11 #include <memory>
12 
14  double massMax):
15  m_min(massMin),
16  m_max(massMax){
17  }
18 
19 
20 bool
22  const std::unique_ptr<ITrigJetHypoInfoCollector>& collector) const{
23 
24  if(ips.size() != 2){
25  std::stringstream ss;
26  ss << "DijetMassCondition::isSatisfied must see exactly 2 particles, but received "
27  << ips.size()
28  << '\n';
29 
30  throw std::runtime_error(ss.str());
31  }
32 
33  auto j0 = ips[0];
34  auto j1 = ips[1];
35 
36  auto rj0 = j0 -> p4();
37  auto rj1 = j1 -> p4();
38 
39  auto mass = (rj0 + rj1).M();
40 
41  bool pass = mass >= m_min and mass < m_max;
42 
43  if(collector){
44  std::stringstream ss0;
45  const void* address = static_cast<const void*>(this);
46  ss0 << "DijetMassCondition: (" << address << ") "
47  << mass << " "
48  << std::boolalpha << pass << " jet group: \n";
49 
50  std::stringstream ss1;
51 
52  for(const auto& ip : ips){
53  address = static_cast<const void*>(ip.get());
54  ss1 << " " << address << " " << ip->eta() << " e " << ip->e() << '\n';
55  }
56  ss1 << '\n';
57  collector -> collect(ss0.str(), ss1.str());
58  }
59  return pass;
60 
61 }
62 
63 std::string DijetMassCondition::toString() const {
64 
65 
66  std::stringstream ss;
67  const void* address = static_cast<const void*>(this);
68  ss << "DijetMassCondition: (" << address << ") Capacity: " << s_capacity
69 
70  << " mass min: " << m_min
71  << " mass max: " << m_max <<'\n';
72 
73  return ss.str();
74 }
PowhegControl_ttHplus_NLO.ss
ss
Definition: PowhegControl_ttHplus_NLO.py:83
dqt_zlumi_pandas.mass
mass
Definition: dqt_zlumi_pandas.py:170
doubleTestComp.j1
j1
Definition: doubleTestComp.py:21
DijetMassCondition.h
find_tgc_unfilled_channelids.ip
ip
Definition: find_tgc_unfilled_channelids.py:3
HypoJetVector
std::vector< pHypoJet > HypoJetVector
Definition: HypoJetDefs.h:27
DijetMassCondition::toString
std::string toString() const override
Definition: DijetMassCondition.cxx:63
DijetMassCondition::s_capacity
static const unsigned int s_capacity
Definition: DijetMassCondition.h:47
RTTAlgmain.address
address
Definition: RTTAlgmain.py:55
ITrigJetHypoInfoCollector.h
Trig::FeatureAccessImpl::collect
void collect(const HLT::TriggerElement *te, std::vector< Trig::Feature< T > > &data, const std::string &label, unsigned int condition, const std::string &teName, const HLT::TrigNavStructure *navstructure)
actual feature acceess implementation It has (thanks to the ClassTraits) functionality to flatten con...
Definition: FeatureCollectAthena.h:299
DijetMassCondition::isSatisfied
bool isSatisfied(const HypoJetVector &, const std::unique_ptr< ITrigJetHypoInfoCollector > &) const override
Definition: DijetMassCondition.cxx:21
DijetMassCondition::DijetMassCondition
DijetMassCondition(double massMin, double massMax)
Definition: DijetMassCondition.cxx:13
DijetMassCondition::m_max
double m_max
Definition: DijetMassCondition.h:45
DijetMassCondition::m_min
double m_min
Definition: DijetMassCondition.h:44