]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TEvtGen/EvtGenModels/EvtbTosllBall.hh
AliDecayer realisation for the EvtGen code and EvtGen itself.
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtbTosllBall.hh
diff --git a/TEvtGen/EvtGenModels/EvtbTosllBall.hh b/TEvtGen/EvtGenModels/EvtbTosllBall.hh
new file mode 100644 (file)
index 0000000..7bd5386
--- /dev/null
@@ -0,0 +1,52 @@
+//--------------------------------------------------------------------------
+//
+// 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) 2000      Caltech, UCSB
+//
+// Module: EvtGen/EvtbTosllBall.hh
+//
+// Description:Implementation of the b->sll decays according to Ball et al.
+//
+// Modification history:
+//
+//    Ryd     January 5, 2000         Module created
+//
+//------------------------------------------------------------------------
+
+#ifndef EVTBTOSLLBALL_HH
+#define EVTBTOSLLBALL_HH
+
+
+#include "EvtGenBase/EvtDecayAmp.hh"
+
+class EvtbTosllFF;
+class EvtbTosllAmp;
+class EvtParticle;
+
+class EvtbTosllBall:public  EvtDecayAmp  {
+
+public:
+
+  EvtbTosllBall() : _calcamp(0), _ballffmodel(0) {}
+  virtual ~EvtbTosllBall();
+
+  std::string getName();
+  EvtDecayBase* clone();
+
+  void decay(EvtParticle *p);
+  void init();
+  void initProbMax();
+
+private:
+  EvtbTosllAmp *_calcamp;
+  EvtbTosllFF *_ballffmodel;
+  double _poleSize;
+};
+
+#endif
+