Angular analysis of B+->K*+(K+pi0)mumu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
455 B

  1. /**
  2. * @file generator.hh
  3. * @author Christoph Langenbruch, Renata Kopecna
  4. * @date 2009-03-18
  5. *
  6. */
  7. #ifndef GENERATOR_H
  8. #define GENERATOR_H
  9. #include <pdf.hh>
  10. #include <parameters.hh>
  11. namespace fcnc {
  12. ///An abstract base class for toy monte carlo generators
  13. class generator {
  14. public:
  15. ///generates nevents toy monte carlo events
  16. virtual std::vector<event> generate(unsigned int nevents, parameters* parameters, pdf* probability)=0;
  17. };
  18. }
  19. #endif