Rivet analyses

Cross section for e+e → Ds*+Ds0*(2317), Ds*+Ds1*(2460), Ds*+Ds1*(2536) between 4.6 and 4.7 GeV

Experiment: BESIII (BEPC)

Inspire ID: 1867196

Status: VALIDATED

Authors: - Peter Richardson

References: - Phys.Rev.D 104 (2021) 032012

Beams: e+ e-

Beam energies: (2.3, 2.3); (2.3, 2.3); (2.3, 2.3); (2.3, 2.3); (2.3, 2.3); (2.3, 2.3); (2.4, 2.4)GeV

Run details: - e+e- to hadrons

Measurement of the cross section for Cross section for e+e → Ds*+Ds0*(2317), Ds*+Ds1*(2460), Ds*+Ds1*(2536) between 4.6 and 4.7 GeV by the BESIII collaboration.

Source code:BESIII_2021_I1867196.cc

// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/UnstableParticles.hh"

namespace Rivet {


  /// @brief e+e- -> D_s* D_sJ
  class BESIII_2021_I1867196 : public Analysis {
  public:

    /// Constructor
    RIVET_DEFAULT_ANALYSIS_CTOR(BESIII_2021_I1867196);


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

    /// Book histograms and initialise projections before the run
    void init() {
      // Initialise and register projections
      declare(FinalState(), "FS");
      declare(UnstableParticles(), "UFS");
      // Histograms
      for (size_t ix=0; ix<3; ++ix) {
        book(_numD[ix],1+ix,1,1);
      }
      for (const string& en : _numD[0].binning().edges<0>()) {
        const double eval = stod(en)*GeV;
        if (isCompatibleWithSqrtS(eval)) {
          _sqs = en; break;
        }
      }
      raiseBeamErrorIf(_sqs.empty());
    }

    void findChildren(const Particle& p, map<long,int>& nRes, int& ncount) const {
      for (const Particle& child : p.children()) {
        if (child.children().empty()) {
          nRes[child.pid()]-=1;
          --ncount;
        }
        else {
          findChildren(child,nRes,ncount);
        }
      }
    }

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

      const FinalState& fs = apply<FinalState>(event, "FS");

      map<long,int> nCount;
      int ntotal(0);
      for (const Particle& p : fs.particles()) {
        nCount[p.pid()] += 1;
        ++ntotal;
      }
      const FinalState& ufs = apply<FinalState>(event, "UFS");
      // loop over D_s*
      for (const Particle& Dstar : ufs.particles(Cuts::abspid==433)) {
        map<long,int> nRes = nCount;
        int ncount = ntotal;
        findChildren(Dstar,nRes,ncount);
        bool matched=false;
        for (const Particle& p : ufs.particles(Cuts::abspid==10431 or
                                 Cuts::abspid==10433 or
                                 Cuts::abspid==20433)) {
          // check particle and antiparticle
          if (Dstar.pid()*p.pid()>0) continue;
          map<long,int> nRes2 = nRes;
          int ncount2 = ncount;
          findChildren(p,nRes2,ncount2);
          if (ncount2!=0) continue;
          matched=true;
          for (const auto& val : nRes2) {
            if (val.second!=0) {
              matched = false;
              break;
            }
          }
          if (matched) {
            if (p.abspid()==10431)      _numD[0]->fill(_sqs);
            else if (p.abspid()==20433) _numD[1]->fill(_sqs);
            else if (p.abspid()==10433) _numD[2]->fill(_sqs);
            break;
          }
        }
        if (matched) break;
      }
    }


    /// Normalise histograms etc., after the run
    void finalize() {
      scale(_numD, crossSection()/picobarn/sumOfWeights());
    }

    ///@}


    /// @name Histograms
    ///@{
    BinnedHistoPtr<string> _numD[3];
    string _sqs = "";
    ///@}


  };


  RIVET_DECLARE_PLUGIN(BESIII_2021_I1867196);

}