rivet is hosted by Hepforge, IPPP Durham

Rivet analyses reference

BELLE_2016_I1454405

$J/\psi$ and $\psi(2S)$ spectrum in $\Upsilon(1S)$ decays
Experiment: BELLE (KEKB)
Inspire ID: 1454405
Status: VALIDATED NOHEPDATA
Authors:
  • Peter Richardson
References:
  • Phys.Rev.D 93 (2016) 11, 112013
Beams: * *
Beam energies: ANY
Run details:
  • Any process producing Upsilon(1S) originally e+e-

Measurement of the scaled momentum of $J/\psi$ and $\psi(2S)$ in $\Upsilon(1S)$ decays

Source code: BELLE_2016_I1454405.cc
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/UnstableParticles.hh"

namespace Rivet {


  /// @brief J/psi and psi(2S) in Upsilon(1S) decays
  class BELLE_2016_I1454405 : public Analysis {
  public:

    /// Constructor
    RIVET_DEFAULT_ANALYSIS_CTOR(BELLE_2016_I1454405);


    /// @name Analysis methods
    /// @{

    /// Book histograms and initialise projections before the run
    void init() {
      // Initialise and register projections
      declare(UnstableParticles(Cuts::pid==553), "UFS");
      //histos
      for(unsigned int ix=0;ix<2;++ix)
	for(unsigned int iy=0;iy<2;++iy)
	  book(_h[ix][iy],1,1+ix,1+iy);
      book(_nUps,"TMP/nUps");
    }

   /// Recursively walk the decay tree to find decay products of @a p
    void findDecayProducts(Particle mother, Particles& unstable) {
      for(const Particle & p: mother.children()) {
        const int id = abs(p.pid());
	if(id == 443 || id==100443) {
	  unstable.push_back(p);
	}
	if(!p.children().empty())
	  findDecayProducts(p, unstable);
      }
    }

    /// Perform the per-event analysis
    void analyze(const Event& event) {
      // Find the Upsilons among the unstables
      for(const Particle & ups : apply<UnstableParticles>(event, "UFS").particles()) {
	_nUps->fill();
	// boost to rest frame
	LorentzTransform boost;
	if (ups.p3().mod() > 1*MeV)
	  boost = LorentzTransform::mkFrameTransformFromBeta(ups.momentum().betaVec());
	// find  psi/psi(2S)
	Particles unstable;
	findDecayProducts(ups,unstable);
	// loop over psi/psi(2S)
	for(const Particle& psi : unstable) {
	  double Pmax = 0.5*(sqr(ups.mass())-sqr(psi.mass()))/ups.mass();
	  const FourMomentum p2 = boost.transform(psi.momentum());
	  const double xP = p2.p3().mod()/Pmax;
	  if(psi.pid()==443) {
	    _h[0][0]->fill(xP);
	    _h[1][0]->fill(xP);
	  }
	  else {
	    _h[0][1]->fill(xP);
	    _h[1][1]->fill(xP);
	  }
	}
      }
    }


    /// Normalise histograms etc., after the run
    void finalize() {
      for(unsigned int ix=0;ix<2;++ix)
	for(unsigned int iy=0;iy<2;++iy)
	  scale(_h[ix][iy],1e4/ *_nUps);
    }

    /// @}


    /// @name Histograms
    /// @{
    Histo1DPtr _h[2][2];
    CounterPtr _nUps;
    /// @}


  };


  RIVET_DECLARE_PLUGIN(BELLE_2016_I1454405);

}