rivet is hosted by Hepforge, IPPP Durham
Rivet 4.0.0
PromptFinalState.fhh
1// -*- C++ -*-
2#ifndef RIVET_PromptFinalState_FHH
3#define RIVET_PromptFinalState_FHH
4
5#include "Rivet/Projections/FinalState.hh"
6
7namespace Rivet {
8
9
10 /// How to treat decay products from prompt muons
11 enum class MuDecaysAs { DIRECT=0, PROMPT=0, NODECAY=0, INDIRECT=1, NONPROMPT=1 };
12
13 /// How to treat decay products from prompt taus
14 enum class TauDecaysAs { DIRECT=0, PROMPT=0, NODECAY=0, INDIRECT=1, NONPROMPT=1 };
15
16
17}
18
19#endif