Fork me on GitHub

source: git/external/fastjet/tools/TopTaggerBase.cc@ e57c062

ImprovedOutputFile Timing dual_readout llp
Last change on this file since e57c062 was b7b836a, checked in by Pavel Demin <pavel-demin@…>, 6 years ago

update FastJet library to 3.3.1 and FastJet Contrib library to 1.036

  • Property mode set to 100644
File size: 2.9 KB
RevLine 
[35cdc46]1//FJSTARTHEADER
[b7b836a]2// $Id: TopTaggerBase.cc 4354 2018-04-22 07:12:37Z salam $
[d7d2da3]3//
[b7b836a]4// Copyright (c) 2005-2018, Matteo Cacciari, Gavin P. Salam and Gregory Soyez
[d7d2da3]5//
6//----------------------------------------------------------------------
7// This file is part of FastJet.
8//
9// FastJet is free software; you can redistribute it and/or modify
10// it under the terms of the GNU General Public License as published by
11// the Free Software Foundation; either version 2 of the License, or
12// (at your option) any later version.
13//
14// The algorithms that underlie FastJet have required considerable
[35cdc46]15// development. They are described in the original FastJet paper,
16// hep-ph/0512210 and in the manual, arXiv:1111.6097. If you use
[d7d2da3]17// FastJet as part of work towards a scientific publication, please
[35cdc46]18// quote the version you use and include a citation to the manual and
19// optionally also to hep-ph/0512210.
[d7d2da3]20//
21// FastJet is distributed in the hope that it will be useful,
22// but WITHOUT ANY WARRANTY; without even the implied warranty of
23// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24// GNU General Public License for more details.
25//
26// You should have received a copy of the GNU General Public License
27// along with FastJet. If not, see <http://www.gnu.org/licenses/>.
28//----------------------------------------------------------------------
[35cdc46]29//FJENDHEADER
[d7d2da3]30
31#include <fastjet/tools/TopTaggerBase.hh>
32
33FASTJET_BEGIN_NAMESPACE
34
35using namespace std;
36
37// compute the W helicity angle
38//
39// The helicity angle is a standard observable in top decays, used to
40// determine the Lorentz structure of the top- W coupling [13]. It is
41// defined as the angle, measured in the rest frame of the
42// reconstructed W, between the reconstructed top's flight direction
43// and one of the W decay products. Normally, it is studied in
44// semi-leptonic top decays, where the charge of the lepton uniquely
45// identifies these decay products. In hadronic top decays there is an
46// ambiguity which we resolve by choosing the lower pT subjet, as
47// measured in the lab frame.
48//
49// The jet passed to this function is expected to already have
50// the structure of a top, including a functional "W()" call;
51// the W must be made of two pieces.
52double TopTaggerBase::_cos_theta_W(const PseudoJet & res) const{
53 // the two jets of interest: top and lower-pt prong of W
54 const PseudoJet & W = res.structure_of<TopTaggerBase>().W();
55 vector<PseudoJet> W_pieces = W.pieces();
56 assert(W_pieces.size() == 2);
57 //assert(W_pieces[0].perp2() >= W_pieces[1].perp2());
58 //PseudoJet W2 = W_pieces[1];
59 // extract the softer of the two W pieces.
60 PseudoJet W2 = (W_pieces[0].perp2() < W_pieces[1].perp2())
61 ? W_pieces[0]
62 : W_pieces[1];
63 PseudoJet top = res;
64
65 // transform these jets into jets in the rest frame of the W
66 W2.unboost(W);
67 top.unboost(W);
68
69 return (W2.px()*top.px() + W2.py()*top.py() + W2.pz()*top.pz())/
70 sqrt(W2.modp2() * top.modp2());
71}
72
73
74FASTJET_END_NAMESPACE
Note: See TracBrowser for help on using the repository browser.