]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TEvtGen/EvtGenBase/EvtNeutrinoParticle.hh
Fix for definitions for CINT
[u/mrichter/AliRoot.git] / TEvtGen / EvtGenBase / EvtNeutrinoParticle.hh
1 //--------------------------------------------------------------------------
2 //
3 // Environment:
4 //      This software is part of the EvtGen package developed jointly
5 //      for the BaBar and CLEO collaborations.  If you use all or part
6 //      of it, please give an appropriate acknowledgement.
7 //
8 // Copyright Information: See EvtGen/COPYRIGHT
9 //      Copyright (C) 1998      Caltech, UCSB
10 //
11 // Module: EvtGen/EvtNeutrinoParticle.hh
12 //
13 // Description:Class to describe neutrinos
14 //
15 // Modification history:
16 //
17 //    RYD     September 25, 1996         Module created
18 //
19 //------------------------------------------------------------------------
20
21 #ifndef EVTNEUTRINOPARTICLE_HH
22 #define EVTNEUTRINOPARTICLE_HH
23
24 #include "EvtGenBase/EvtDiracSpinor.hh"
25 #include "EvtGenBase/EvtParticle.hh"
26 class EvtId;
27 class EvtVector4R;
28
29 class EvtNeutrinoParticle:public EvtParticle {
30
31 public:
32
33   EvtNeutrinoParticle();
34   virtual ~EvtNeutrinoParticle();
35   void init(EvtId part_n,const EvtVector4R& p4);
36   EvtDiracSpinor spParentNeutrino() const;
37   EvtDiracSpinor spNeutrino() const;
38   EvtSpinDensity rotateToHelicityBasis() const;
39   EvtSpinDensity rotateToHelicityBasis(double alpha,
40                                        double beta,
41                                        double gamma) const;
42   
43 private:
44
45   EvtDiracSpinor spinor_rest;
46   EvtDiracSpinor spinor_parent;
47
48   EvtNeutrinoParticle(const EvtNeutrinoParticle& n);
49   EvtNeutrinoParticle& operator=(const EvtNeutrinoParticle& n);
50
51 };
52 #endif
53