Rivet Analyses Reference

BESIII_2018_I1641075

$\eta^\prime\to \pi^+\pi^-\gamma$ decays
Experiment: BESIII (BEPC)
Inspire ID: 1641075
Status: VALIDATED
Authors:
  • Peter Richardson
References:
  • Phys.Rev.Lett. 120 (2018) 242003, 2018
Beams: * *
Beam energies: ANY
Run details:
  • Events with eta prime decays, either particle guns or collisions.

Differential decay rates for $\eta^\prime\to \pi^+\pi^-\gamma$ decays. Data from HEPData has been manipulated to remove the background, correct for the efficiency, and normalise the distribution.

Source code: BESIII_2018_I1641075.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 Add a short analysis description here
  class BESIII_2018_I1641075 : public Analysis {
  public:

    /// Constructor
    RIVET_DEFAULT_ANALYSIS_CTOR(BESIII_2018_I1641075);


    /// @name Analysis methods
    //@{

    /// Book histograms and initialise projections before the run
    void init() {

      // Initialise and register projections
      declare(UnstableParticles(), "UFS");

      // Book histograms
      book(_h_m, 1, 1, 5);

    }
    
    void findDecayProducts(const Particle & mother, unsigned int & nstable, unsigned int & ngamma, 
                           unsigned int & npip, unsigned int & npim, FourMomentum & ptot) {
      for(const Particle & p : mother.children()) {
        int id = p.pid();
        if (id == PID::PIMINUS ) {
	  ++npim;
          ++nstable;
	  ptot += p.momentum();
	}
        else if (id == PID::PIPLUS) {
          ++npip;
          ++nstable;
	  ptot += p.momentum();
        }
        else if ( !p.children().empty() ) {
          findDecayProducts(p, nstable, ngamma,npip,npim,ptot);
        }
        else if (id == PID::GAMMA) {
	  ++ngamma;
          ++nstable;
        }
        else
          ++nstable;
      }
    }


    /// Perform the per-event analysis
    void analyze(const Event& event) {

      // Loop over eta' mesons
      for (const Particle& p :  apply<UnstableParticles>(event, "UFS").particles(Cuts::pid==331)) {
	unsigned nstable(0),ngamma(0),npip(0),npim(0);
	FourMomentum ptot;
	findDecayProducts(p,nstable,ngamma,npip,npim,ptot);
	if(nstable==3 && npim==1 && npip==1 && ngamma==1)
	  _h_m->fill(ptot.mass());
      }
    }


    /// Normalise histograms etc., after the run
    void finalize() {

      normalize(_h_m);

    }

    //@}


    /// @name Histograms
    //@{
    Histo1DPtr _h_m;
    //@}


  };


  // The hook for the plugin system
  RIVET_DECLARE_PLUGIN(BESIII_2018_I1641075);


}