PandaRoot
PndChiGenExclusive.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 /*
14  * @author Alexey Luchinsky
15  * @author Stanislav Poslavsky (stvlpos (at) mail.ru)
16  */
17 
18 #ifndef PNDCHIGENEXCLUSIVE_H
19 #define PNDCHIGENEXCLUSIVE_H
20 
21 #include "FairGenerator.h"
22 #include "FairPrimaryGenerator.h"
23 #include "PartonicModel.h"
24 #include "EvtGenBase/EvtVector4R.hh"
25 #include "EvtGenBase/EvtStdHep.hh"
26 
27 namespace chigen {
28 
29 class PndChiGenExclusive : public FairGenerator {
30  public:
32  virtual ~PndChiGenExclusive();
33 
34  virtual Bool_t ReadEvent(FairPrimaryGenerator *primGen);
35 
37 
38  private:
39  // This only needs to extract correct polarizations
40  PartonicModel &model;
41  // Momentum of chiMeson (fixed))
42  EvtVector4R chiMomentum;
43  // EvtGen data
44  EvtStdHep evtstdhep;
45 };
46 } // namespace chigen
47 
48 #endif /* PNDCHIGENEXCLUSIVE_H */
Definition: ChiGen.h:24
virtual Bool_t ReadEvent(FairPrimaryGenerator *primGen)
PndChiGenExclusive(PartonicModel &model)
ClassDef(PndChiGenExclusive, 1)