]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TEvtGen/EvtGen/EvtGenModels/EvtSTS.hh
Converting TEvtGen to native cmake
[u/mrichter/AliRoot.git] / TEvtGen / EvtGen / EvtGenModels / EvtSTS.hh
diff --git a/TEvtGen/EvtGen/EvtGenModels/EvtSTS.hh b/TEvtGen/EvtGen/EvtGenModels/EvtSTS.hh
new file mode 100644 (file)
index 0000000..a53c55f
--- /dev/null
@@ -0,0 +1,45 @@
+//--------------------------------------------------------------------------
+//
+// Environment:
+//      This software is part of the EvtGen package developed jointly
+//      for the BaBar and CLEO collaborations.  If you use all or part
+//      of it, please give an appropriate acknowledgement.
+//
+// Copyright Information: See EvtGen/COPYRIGHT
+//      Copyright (C) 1998      Caltech, UCSB
+//
+// Module: EvtGen/EvtSTS.hh
+//
+// Description:Performs the decay of a scalar -> tensor scalar
+//
+// Modification history:
+//
+//    RYD        August 21, 1998         Module created
+//
+//------------------------------------------------------------------------
+
+#ifndef EVTSTS_HH
+#define EVTSTS_HH
+
+#include "EvtGenBase/EvtDecayAmp.hh"
+
+class EvtParticle;
+
+class EvtSTS:public  EvtDecayAmp  {
+
+public:
+
+  EvtSTS() {}
+  virtual ~EvtSTS();
+
+  std::string getName();
+  EvtDecayBase* clone();
+
+  void init();
+  void initProbMax();
+
+  void decay(EvtParticle *p); 
+
+};
+
+#endif