CMS 3D CMS Logo

CMSBoostedTauSeedingAlgorithm.cc
Go to the documentation of this file.
1 // CMSBoostedTauSeedingAlgorithm Package
2 //
3 //----------------------------------------------------------------------
4 // This file is part of FastJet contrib.
5 //
6 // It is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2 of the License, or (at
9 // your option) any later version.
10 //
11 // It is distributed in the hope that it will be useful, but WITHOUT
12 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 // License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this code. If not, see <http://www.gnu.org/licenses/>.
18 
19 //CG: From CMSSW 8_0_X cut on eta subjets <3. Anyways taus are cut at 2.3
20 
21 //----------------------------------------------------------------------
22 
24 
25 FASTJET_BEGIN_NAMESPACE // defined in fastjet/internal/base.hh
26 
27 namespace contrib{
28 
29 
31  // constructor
33  double iminMassDrop, double imaxMassDrop,
34  double iminY, double imaxY,
35  double iminDeltaR, double imaxDeltaR,
36  int maxDepth,
37  int verbosity)
38  : ptMin_(iminPt),
39  muMin_(iminMassDrop), muMax_(imaxMassDrop),
40  yMin_(iminY), yMax_(imaxY),
41  dRMin_(iminDeltaR), dRMax_(imaxDeltaR),
42  maxDepth_(maxDepth),
43  verbosity_(verbosity)
44  {}
45 
47  // description
49  std::ostringstream oss;
50  oss << "CMSBoostedTauSeedingAlgorithm algorithm";
51  return oss.str();
52  }
53 
54 
56  void CMSBoostedTauSeedingAlgorithm::dumpSubJetStructure(const fastjet::PseudoJet& jet, int depth, int maxDepth, const std::string& depth_and_idx_string) const
57  {
58  if ( maxDepth != -1 && depth > maxDepth ) return;
59  fastjet::PseudoJet subjet1, subjet2;
60  bool hasSubjets = jet.has_parents(subjet1, subjet2);
61  if ( !hasSubjets ) return;
62  std::string depth_and_idx_string_subjet1 = depth_and_idx_string;
63  if ( depth_and_idx_string_subjet1.length() > 0 ) depth_and_idx_string_subjet1.append(".");
64  depth_and_idx_string_subjet1.append("0");
65  for ( int iSpace = 0; iSpace < depth; ++iSpace ) {
66  std::cout << " ";
67  }
68  std::cout << " jetConstituent #" << depth_and_idx_string_subjet1 << " (depth = " << depth << "): Pt = " << subjet1.pt() << ","
69  << " eta = " << subjet1.eta() << ", phi = " << subjet1.phi() << ", mass = " << subjet1.m()
70  << " (constituents = " << subjet1.constituents().size() << ")" << std::endl;
71  dumpSubJetStructure(subjet1, depth + 1, maxDepth, depth_and_idx_string_subjet1);
72  std::string depth_and_idx_string_subjet2 = depth_and_idx_string;
73  if ( depth_and_idx_string_subjet2.length() > 0 ) depth_and_idx_string_subjet2.append(".");
74  depth_and_idx_string_subjet2.append("1");
75  for ( int iSpace = 0; iSpace < depth; ++iSpace ) {
76  std::cout << " ";
77  }
78  std::cout << " jetConstituent #" << depth_and_idx_string_subjet2 << " (depth = " << depth << "): Pt = " << subjet2.pt() << ","
79  << " eta = " << subjet2.eta() << ", phi = " << subjet2.phi() << ", mass = " << subjet2.m()
80  << " (constituents = " << subjet2.constituents().size() << ")" << std::endl;
81  dumpSubJetStructure(subjet2, depth + 1, maxDepth, depth_and_idx_string_subjet2);
82  for ( int iSpace = 0; iSpace < depth; ++iSpace ) {
83  std::cout << " ";
84  }
85  double dR = subjet1.delta_R(subjet2);
86  std::cout << " (mass-drop @ " << depth_and_idx_string << " = " << std::max(subjet1.m(), subjet2.m())/jet.m() << ", dR = " << dR << ")" << std::endl;
87  }
88 
89  std::pair<PseudoJet, PseudoJet> CMSBoostedTauSeedingAlgorithm::findSubjets(const PseudoJet& jet, int depth, bool& subjetsFound) const
90  {
91  const float etaMax_ = 3.0; // cut on eta subjets <3. Anyway taus are cut at 2.3
92  if ( verbosity_ >= 2 ) {
93  std::cout << "<CMSBoostedTauSeedingAlgorithm::findSubjets>:" << std::endl;
94  std::cout << " jet: Pt = " << jet.pt() << ", eta = " << jet.eta() << ", phi = " << jet.phi() << ", mass = " << jet.m() << std::endl;
95  }
96 
97  PseudoJet subjet1, subjet2;
98  bool hasSubjets = jet.has_parents(subjet1, subjet2);
99  if ( hasSubjets && (maxDepth_ == -1 || depth <= maxDepth_) ) {
100  // make subjet1 the more massive jet
101  if ( subjet1.m2() < subjet2.m2() ) {
102  std::swap(subjet1, subjet2);
103  }
104  double dR = subjet1.delta_R(subjet2);
105  double kT = subjet1.kt_distance(subjet2);
106  double mu = ( jet.m() > 0. ) ?
107  sqrt(std::max(subjet1.m2(), subjet2.m2())/jet.m2()) : -1.;
108  // check if subjets pass selection required for seeding boosted tau reconstruction
109  if ( subjet1.pt() > ptMin_ && fabs(subjet1.eta()) < etaMax_ && subjet2.pt() > ptMin_ && fabs(subjet2.eta()) < etaMax_ && dR > dRMin_ && dR < dRMax_ && mu > muMin_ && mu < muMax_ && kT < (yMax_*jet.m2()) && kT > (yMin_*jet.m2()) ) {
110  subjetsFound = true;
111  return std::make_pair(subjet1, subjet2);
112  } else if ( subjet1.pt() > ptMin_ ) {
113  return findSubjets(subjet1, depth + 1, subjetsFound);
114  } else if ( subjet2.pt() > ptMin_ ) {
115  return findSubjets(subjet2, depth + 1, subjetsFound);
116  }
117  }
118  subjetsFound = false;
119  PseudoJet dummy_subjet1, dummy_subjet2;
120  return std::make_pair(dummy_subjet1, dummy_subjet2);
121  }
122 
123  PseudoJet CMSBoostedTauSeedingAlgorithm::result(const PseudoJet& jet) const
124  {
125  if ( verbosity_ >= 1 ) {
126  std::cout << "<CMSBoostedTauSeedingAlgorithm::findSubjets>:" << std::endl;
127  std::cout << " jet: Pt = " << jet.pt() << ", eta = " << jet.eta() << ", phi = " << jet.phi() << ", mass = " << jet.m() << std::endl;
128  }
129 
130  if ( verbosity_ >= 2 ) {
131  dumpSubJetStructure(jet, 0, maxDepth_, "");
132  }
133 
134  bool subjetsFound = false;
135  std::pair<PseudoJet, PseudoJet> subjets = findSubjets(jet, 0, subjetsFound);
136  if ( subjetsFound ) {
137  // fill structure for returning result
138  PseudoJet subjet1 = subjets.first;
139  PseudoJet subjet2 = subjets.second;
140  if ( verbosity_ >= 1 ) {
141  std::cout << "before recombination:" << std::endl;
142  std::cout << " subjet #1: Pt = " << subjet1.pt() << ", eta = " << subjet1.eta() << ", phi = " << subjet1.phi() << ", mass = " << subjet1.m() << std::endl;
143  std::cout << " subjet #2: Pt = " << subjet2.pt() << ", eta = " << subjet2.eta() << ", phi = " << subjet2.phi() << ", mass = " << subjet2.m() << std::endl;
144  }
145 
146  const JetDefinition::Recombiner* rec = jet.associated_cluster_sequence()->jet_def().recombiner();
147  PseudoJet result_local = join(subjet1, subjet2, *rec);
148  if ( verbosity_ >= 1 ) {
149  std::cout << "after recombination:" << std::endl;
150  std::vector<fastjet::PseudoJet> subjets = result_local.pieces();
151  int idx_subjet = 0;
152  for ( std::vector<fastjet::PseudoJet>::const_iterator subjet = subjets.begin();
153  subjet != subjets.end(); ++subjet ) {
154  std::cout << " subjet #" << idx_subjet << ": Pt = " << subjet->pt() << ", eta = " << subjet->eta() << ", phi = " << subjet->phi() << ", mass = " << subjet->m()
155  << " (#constituents = " << subjet->constituents().size() << ")" << std::endl;
156  std::vector<fastjet::PseudoJet> constituents = subjet->constituents();
157  int idx_constituent = 0;
158  for ( std::vector<fastjet::PseudoJet>::const_iterator constituent = constituents.begin();
159  constituent != constituents.end(); ++constituent ) {
160  if ( constituent->pt() < 1.e-3 ) continue; // CV: skip ghosts
161  std::cout << " constituent #" << idx_constituent << ": Pt = " << constituent->pt() << ", eta = " << constituent->eta() << ", phi = " << constituent->phi() << ","
162  << " mass = " << constituent->m() << std::endl;
163  ++idx_constituent;
164  }
165  ++idx_subjet;
166  }
167  }
168 
170  //s->_original_jet = jet;
171  s->_mu = ( jet.m2() > 0. ) ? sqrt(std::max(subjet1.m2(), subjet2.m2())/jet.m2()) : 0.;
172  s->_y = ( jet.m2() > 0. ) ? subjet1.kt_distance(subjet2)/jet.m2() : 0.;
173  s->_dR = subjet1.delta_R(subjet2);
174  s->_pt = subjet2.pt();
175 
176  result_local.set_structure_shared_ptr(SharedPtr<PseudoJetStructureBase>(s));
177 
178  return result_local;
179  } else {
180  // no subjets for seeding boosted tau reconstruction found, return an empty PseudoJet
181  if ( verbosity_ >= 1 ) {
182  std::cout << "No subjets found." << std::endl;
183  }
184  return PseudoJet();
185  }
186  }
187 
188 
189 } // namespace contrib
190 
191 FASTJET_END_NAMESPACE
void dumpSubJetStructure(const fastjet::PseudoJet &jet, int depth, int maxDepth, const std::string &depth_and_idx_string) const
PseudoJet result(const PseudoJet &jet) const override
int maxDepth_
the max depth for descending into clustering sequence
double _mu
the value of the mass-drop parameter
double yMax_
the max value of the asymmetry parameter
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
T sqrt(T t)
Definition: SSEVec.h:18
double yMin_
the min value of the asymmetry parameter
CMSBoostedTauSeedingAlgorithm(double ptMin, double muMin, double muMax, double yMin, double yMax, double dRMin, double dRMax, int maxDepth, int verbosity=0)
double muMax_
the max value of the mass-drop parameter
double _y
the value of the asymmetry parameter
const int mu
Definition: Constants.h:22
std::pair< PseudoJet, PseudoJet > findSubjets(const PseudoJet &jet, int depth, bool &subjetsFound) const
int verbosity_
flag to enable/disable debug output
static std::string join(char **cmd)
Definition: RemoteFile.cc:18
double dRMin_
the min value of the dR parameter
double muMin_
the min value of the mass-drop parameter