EvtGen 2.2.0
Monte Carlo generator of particle decays, in particular the weak decays of heavy flavour particles such as B mesons.
Loading...
Searching...
No Matches
EvtVectorParticle.hh
Go to the documentation of this file.
1
2/***********************************************************************
3* Copyright 1998-2020 CERN for the benefit of the EvtGen authors *
4* *
5* This file is part of EvtGen. *
6* *
7* EvtGen is free software: you can redistribute it and/or modify *
8* it under the terms of the GNU General Public License as published by *
9* the Free Software Foundation, either version 3 of the License, or *
10* (at your option) any later version. *
11* *
12* EvtGen is distributed in the hope that it will be useful, *
13* but WITHOUT ANY WARRANTY; without even the implied warranty of *
14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15* GNU General Public License for more details. *
16* *
17* You should have received a copy of the GNU General Public License *
18* along with EvtGen. If not, see <https://www.gnu.org/licenses/>. *
19***********************************************************************/
20
21#ifndef EVTVECTORPARTICLE_HH
22#define EVTVECTORPARTICLE_HH
23
27
28#include <array>
29#include <cassert>
30
31class EvtId;
32
34 public:
35 EvtVectorParticle() = default;
36
37 void init( EvtId part_n, double e, double px, double py, double pz );
38 void init( EvtId part_n, const EvtVector4R& p ) override;
39 void init( EvtId part_n, const EvtVector4R& p, const EvtVector4C&,
40 const EvtVector4C&, const EvtVector4C& );
41 EvtVector4C epsParent( int i ) const override
42 {
43 assert( i >= 0 && static_cast<std::size_t>( i ) < m_eps.size() );
44
45 return boostTo( m_eps[i], this->getP4() );
46 }
47 EvtVector4C eps( int i ) const override
48 {
49 assert( i >= 0 && static_cast<std::size_t>( i ) < m_eps.size() );
50
51 return m_eps[i];
52 }
54 EvtSpinDensity rotateToHelicityBasis( double alpha, double beta,
55 double gamma ) const override;
56
57 private:
58 std::array<EvtVector4C, 3> m_eps;
59
62};
63
64#endif
EvtRaritaSchwinger boostTo(const EvtRaritaSchwinger &rs, const EvtVector4R p4)
Definition EvtId.hh:27
const EvtVector4R & getP4() const
EvtVectorParticle(const EvtVectorParticle &vector)
EvtSpinDensity rotateToHelicityBasis() const override
EvtVector4C eps(int i) const override
EvtVectorParticle()=default
std::array< EvtVector4C, 3 > m_eps
EvtVectorParticle & operator=(const EvtVectorParticle &vector)
void init(EvtId part_n, double e, double px, double py, double pz)
EvtVector4C epsParent(int i) const override