]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGenModels/EvtBtoXsgammaAbsModel.cpp
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenModels / EvtBtoXsgammaAbsModel.cpp
1 //--------------------------------------------------------------------------
2 //
3 //
4 // Copyright Information: See EvtGen/COPYRIGHT
5 //
6 // Environment:
7 //      This software is part of the EvtGen package developed jointly
8 //      for the BaBar and CLEO collaborations.  If you use all or part
9 //      of it, please give an appropriate acknowledgement.
10 //
11 // Module: EvtBtoXsgammaAbsModel.cc
12 //
13 // Description:
14 //      B->Xs gamma model base class.
15 //
16 // Modification history:
17 //
18 //    Jane Tinslay            March 21, 2000      Module Created
19 //------------------------------------------------------------------------
20 //
21 #include "EvtGenBase/EvtPatches.hh"
22
23 #include <stdlib.h>
24 #include "EvtGenModels/EvtBtoXsgammaAbsModel.hh"
25
26 EvtBtoXsgammaAbsModel::~EvtBtoXsgammaAbsModel() {}
27
28 void EvtBtoXsgammaAbsModel::init(int, double*) {
29
30   //This default version of init does nothing;
31   //A specialized version of this function can be
32   //supplied for each decay model to do initialization.
33
34   return;
35
36 }