]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TEvtGen/EvtGenModels/EvtMelikhov.hh
AliDecayer realisation for the EvtGen code and EvtGen itself.
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtMelikhov.hh
diff --git a/TEvtGen/EvtGenModels/EvtMelikhov.hh b/TEvtGen/EvtGenModels/EvtMelikhov.hh
new file mode 100644 (file)
index 0000000..35984da
--- /dev/null
@@ -0,0 +1,53 @@
+//--------------------------------------------------------------------------
+//
+// 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/EvtMelikhov.hh
+//
+// Description:Implementation of the Melikhov semileptonic model
+//
+// Modification history:
+//
+//    DJL     April 20, 1998         Module created
+//
+//------------------------------------------------------------------------
+
+#ifndef EVTMELIKHOV_HH
+#define EVTMELIKHOV_HH
+
+#include <fstream>
+#include <stdio.h>
+
+
+#include "EvtGenBase/EvtDecayAmp.hh"
+#include "EvtGenBase/EvtSemiLeptonicFF.hh"
+#include "EvtGenBase/EvtSemiLeptonicAmp.hh"
+
+class EvtParticle;
+
+class EvtMelikhov:public  EvtDecayAmp  {
+
+public:
+
+  EvtMelikhov() {}
+  virtual ~EvtMelikhov();
+
+  std::string getName();
+  EvtDecayBase* clone();
+
+  void decay(EvtParticle *p);
+  void init();
+
+private:
+  EvtSemiLeptonicFF *Melikhovffmodel;
+  EvtSemiLeptonicAmp *calcamp;
+};
+
+#endif
+