]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TEvtGen/EvtGen/EvtCheckDecays.hh
Coverity fixes.
[u/mrichter/AliRoot.git] / TEvtGen / EvtGen / EvtCheckDecays.hh
CommitLineData
da0e9ce3 1//--------------------------------------------------------------------------
2//
3// Environment:
4// This software is part of the EvtGen package developed
5// for the BaBar collaboration. If you use all or part
6// of it, please give an appropriate acknowledgement.
7//
8// Module: EvtCheckDecays
9//
10// Description: Holds code to conduct various checks on the
11// EvtDecayTable::decaytable()
12//
13// Modification history:
14// Abi Soffer Nov 29, 2007, created
15//
16//------------------------------------------------------------------------
17
18#ifndef EVTCHECKDECAYS
19#define EVTCHECKDECAYS
20
21class EvtId;
22
23class EvtCheckDecays {
24public:
25// check CP conservation in the decay BRs, daughters, and models:
26 static void checkConj(bool compareArguments = false);
27
28 // Used by checkConj() to identify self-conjugate particles:
29 static bool selfConj(const EvtId & id);
30
31private:
32};
33
34#endif