Rivet analyses referenceBABAR_2007_I747154Dalitz plot analysis of $D^0\to \pi^+\pi^-\pi^0$Experiment: BABAR (PEP-II) Inspire ID: 747154 Status: VALIDATED NOHEPDATA Authors:
Beam energies: ANY Run details:
Measurement of the mass distributions in the decay $D^0\to \pi^+\pi^-\pi^0$. The data were read from the plots in the paper. Resolution/acceptance effects have been not unfolded and given the agreement with the model in the paper this analysis should only be used for qualitative studies. Source code: BABAR_2007_I747154.cc 1// -*- C++ -*-
2#include "Rivet/Analysis.hh"
3#include "Rivet/Projections/UnstableParticles.hh"
4#include "Rivet/Projections/DecayedParticles.hh"
5
6namespace Rivet {
7
8
9 /// @brief D0 -> pi+pi-pi0
10 class BABAR_2007_I747154 : public Analysis {
11 public:
12
13 /// Constructor
14 RIVET_DEFAULT_ANALYSIS_CTOR(BABAR_2007_I747154);
15
16
17 /// @name Analysis methods
18 /// @{
19
20 /// Book histograms and initialise projections before the run
21 void init() {
22 // Initialise and register projections
23 UnstableParticles ufs = UnstableParticles(Cuts::abspid==421);
24 declare(ufs, "UFS");
25 DecayedParticles D0(ufs);
26 D0.addStable(PID::PI0);
27 D0.addStable(PID::K0S);
28 D0.addStable(PID::ETA);
29 D0.addStable(PID::ETAPRIME);
30 declare(D0, "D0");
31 // histograms
32 book(_h_pi[0],1,1,1);
33 book(_h_pi[1],1,1,2);
34 book(_dalitz, "dalitz",50,0.,3.2,50,0.0,3.2);
35 }
36
37 /// Perform the per-event analysis
38 void analyze(const Event& event) {
39 static const map<PdgId,unsigned int> & mode = { { 211,1},{-211,1}, {111,1}};
40 DecayedParticles D0 = apply<DecayedParticles>(event, "D0");
41 // loop over particles
42 for(unsigned int ix=0;ix<D0.decaying().size();++ix) {
43 if( ! D0.modeMatches(ix,3,mode) ) continue;
44 int sign = D0.decaying()[ix].pid()/421;
45 const Particles & pi0 = D0.decayProducts()[ix].at(111);
46 const Particles & pip = D0.decayProducts()[ix].at( sign*211);
47 const Particles & pim = D0.decayProducts()[ix].at(-sign*211);
48 double mplus = (pip[0].momentum()+pi0[0].momentum()).mass2();
49 double mminus = (pim[0].momentum()+pi0[0].momentum()).mass2();
50 _h_pi[0]->fill(mplus);
51 _h_pi[1]->fill(mminus);
52 _dalitz->fill(mminus,mplus);
53 }
54 }
55
56
57 /// Normalise histograms etc., after the run
58 void finalize() {
59 normalize(_h_pi[0]);
60 normalize(_h_pi[1]);
61 normalize(_dalitz);
62 }
63
64 /// @}
65
66
67 /// @name Histograms
68 /// @{
69 Histo1DPtr _h_pi[2];
70 Histo2DPtr _dalitz;
71 /// @}
72
73
74 };
75
76
77 RIVET_DECLARE_PLUGIN(BABAR_2007_I747154);
78
79}
|