]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TEvtGen/EvtGen/EvtGenModels/EvtPhsp.hh
Converting TEvtGen to native cmake
[u/mrichter/AliRoot.git] / TEvtGen / EvtGen / EvtGenModels / EvtPhsp.hh
diff --git a/TEvtGen/EvtGen/EvtGenModels/EvtPhsp.hh b/TEvtGen/EvtGen/EvtGenModels/EvtPhsp.hh
new file mode 100644 (file)
index 0000000..09753c5
--- /dev/null
@@ -0,0 +1,50 @@
+//--------------------------------------------------------------------------
+//
+// 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/EvtPhsp.hh
+//
+// Description:
+//Class to handle generic phase space decays not done
+//in other decay models.
+//
+// Modification history:
+//
+//    DJL/RYD     August 11, 1998         Module created
+//
+//------------------------------------------------------------------------
+
+#ifndef EVTPHSP_HH
+#define EVTPHSP_HH
+
+#include "EvtGenBase/EvtDecayIncoherent.hh"
+
+class EvtParticle;
+
+class EvtPhsp:public  EvtDecayIncoherent  {
+
+public:
+  
+  EvtPhsp() {}
+  virtual ~EvtPhsp();
+
+  std::string getName();
+
+  EvtDecayBase* clone();
+
+  void initProbMax();
+
+  void init();
+
+  void decay(EvtParticle *p); 
+
+};
+
+#endif
+