Bayeux  3.4.1
Core Foundation library for SuperNEMO
compton.h
Go to the documentation of this file.
1 #ifndef GENBB_DECAY0_COMPTON_H_
2 #define GENBB_DECAY0_COMPTON_H_ 1
3 
4 namespace mygsl{
5  class rng;
6 }
7 
8 namespace genbb {
9 
10  class primary_event;
11 
12  namespace decay0 {
13 
15  // Input : E1,E2 - range of kinetic energy of gamma (MeV);
16  // teta1,teta2 - range of teta angle (radians);
17  // phi1,phi2 - range of phi angle (radians);
18  // Output: see description of primary_event. Times emission of scattered
19  // gamma quantum and electron are supposed to be 0.
20  // VIT, 11.12.1995.
21  void decay0_compton(mygsl::rng & prng, primary_event & event,
22  double E1,double E2,
23  double teta1,double teta2,
24  double phi1,double phi2);
25 
26  } // end of namespace decay0
27 } // end of namespace genbb
28 
29 #endif // GENBB_DECAY0_COMPTON_H_
30 //
31 // Local Variables: --
32 // mode: c++ --
33 // End: --
34 
35 
void decay0_compton(mygsl::rng &prng, primary_event &event, double E1, double E2, double teta1, double teta2, double phi1, double phi2)
To sample the momentum of initial gamma quantum for COMPTON1 subroutine and store the momenta of scat...
Top-level namespace of the Bayeux/genbb_help module library.
Definition: alpha_decay.h:51
Top-level namespace of the Bayeux/mygsl module library.
Definition: base_decay_driver.h:47
Pseudo random number generator.
Definition: rng.h:53