GENIEGenerator
Loading...
Searching...
No Matches
genie::H3AMNuGammaPXSec Class Reference

An anomaly-mediated neutrino-photon interaction cross section model Is a concrete implementation of the XSecAlgorithmI interface. More...

#include <H3AMNuGammaPXSec.h>

Inheritance diagram for genie::H3AMNuGammaPXSec:
[legend]
Collaboration diagram for genie::H3AMNuGammaPXSec:
[legend]

Public Member Functions

 H3AMNuGammaPXSec ()
 H3AMNuGammaPXSec (string config)
virtual ~H3AMNuGammaPXSec ()
double XSec (const Interaction *i, KinePhaseSpace_t k) const
 Compute the cross section for the input interaction.
double Integral (const Interaction *i) const
bool ValidProcess (const Interaction *i) const
 Can this cross section algorithm handle the input process?
bool ValidKinematics (const Interaction *i) const
 Is the input kinematical point a physically allowed one?
void Configure (const Registry &config)
void Configure (string config)
Public Member Functions inherited from genie::XSecAlgorithmI
virtual ~XSecAlgorithmI ()
Public Member Functions inherited from genie::Algorithm
virtual ~Algorithm ()
virtual void FindConfig (void)
virtual const RegistryGetConfig (void) const
RegistryGetOwnedConfig (void)
virtual const AlgIdId (void) const
 Get algorithm ID.
virtual AlgStatus_t GetStatus (void) const
 Get algorithm status.
virtual bool AllowReconfig (void) const
virtual AlgCmp_t Compare (const Algorithm *alg) const
 Compare with input algorithm.
virtual void SetId (const AlgId &id)
 Set algorithm ID.
virtual void SetId (string name, string config)
const AlgorithmSubAlg (const RgKey &registry_key) const
void AdoptConfig (void)
void AdoptSubstructure (void)
virtual void Print (ostream &stream) const
 Print algorithm info.

Private Member Functions

void LoadConfig (void)

Private Attributes

double fGw

Additional Inherited Members

Static Public Member Functions inherited from genie::Algorithm
static string BuildParamVectKey (const std::string &comm_name, unsigned int i)
static string BuildParamVectSizeKey (const std::string &comm_name)
static string BuildParamMatKey (const std::string &comm_name, unsigned int i, unsigned int j)
static string BuildParamMatRowSizeKey (const std::string &comm_name)
static string BuildParamMatColSizeKey (const std::string &comm_name)
Protected Member Functions inherited from genie::XSecAlgorithmI
 XSecAlgorithmI ()
 XSecAlgorithmI (string name)
 XSecAlgorithmI (string name, string config)
Protected Member Functions inherited from genie::Algorithm
 Algorithm ()
 Algorithm (string name)
 Algorithm (string name, string config)
void Initialize (void)
void DeleteConfig (void)
void DeleteSubstructure (void)
RegistryExtractLocalConfig (const Registry &in) const
RegistryExtractLowerConfig (const Registry &in, const string &alg_key) const
 Split an incoming configuration Registry into a block valid for the sub-algo identified by alg_key.
template<class T>
bool GetParam (const RgKey &name, T &p, bool is_top_call=true) const
template<class T>
bool GetParamDef (const RgKey &name, T &p, const T &def) const
template<class T>
int GetParamVect (const std::string &comm_name, std::vector< T > &v, bool is_top_call=true) const
 Handle to load vectors of parameters.
int GetParamVectKeys (const std::string &comm_name, std::vector< RgKey > &k, bool is_top_call=true) const
template<class T>
int GetParamMat (const std::string &comm_name, TMatrixT< T > &mat, bool is_top_call=true) const
 Handle to load matrix of parameters.
template<class T>
int GetParamMatSym (const std::string &comm_name, TMatrixTSym< T > &mat, bool is_top_call=true) const
int GetParamMatKeys (const std::string &comm_name, std::vector< RgKey > &k, bool is_top_call=true) const
int AddTopRegistry (Registry *rp, bool owns=true)
 add registry with top priority, also update ownership
int AddLowRegistry (Registry *rp, bool owns=true)
 add registry with lowest priority, also update ownership
int MergeTopRegistry (const Registry &r)
int AddTopRegisties (const vector< Registry * > &rs, bool owns=false)
 Add registries with top priority, also udated Ownerships.
Protected Attributes inherited from genie::Algorithm
bool fAllowReconfig
bool fOwnsSubstruc
 true if it owns its substructure (sub-algs,...)
AlgId fID
 algorithm name and configuration set
vector< Registry * > fConfVect
vector< bool > fOwnerships
 ownership for every registry in fConfVect
AlgStatus_t fStatus
 algorithm execution status
AlgMapfOwnedSubAlgMp
 local pool for owned sub-algs (taken out of the factory pool)

Detailed Description

An anomaly-mediated neutrino-photon interaction cross section model Is a concrete implementation of the XSecAlgorithmI interface.

References:\n J.A.Harvey, C.T.Hill and R.J.Hill, PRL99, 261601 (2007)
Author
Costas Andreopoulos <c.andreopoulos \at cern.ch> University of Liverpool
Created:\n February 15, 2008
License:\n Copyright (c) 2003-2025, The GENIE Collaboration
For the full text of the license visit http://copyright.genie-mc.org

Definition at line 28 of file H3AMNuGammaPXSec.h.

Constructor & Destructor Documentation

◆ H3AMNuGammaPXSec() [1/2]

H3AMNuGammaPXSec::H3AMNuGammaPXSec ( )

Definition at line 24 of file H3AMNuGammaPXSec.cxx.

24 :
25XSecAlgorithmI("genie::H3AMNuGammaPXSec")
26{
27
28}

References genie::XSecAlgorithmI::XSecAlgorithmI().

◆ H3AMNuGammaPXSec() [2/2]

H3AMNuGammaPXSec::H3AMNuGammaPXSec ( string config)

Definition at line 30 of file H3AMNuGammaPXSec.cxx.

30 :
31XSecAlgorithmI("genie::H3AMNuGammaPXSec", config)
32{
33
34}

References genie::XSecAlgorithmI::XSecAlgorithmI().

◆ ~H3AMNuGammaPXSec()

H3AMNuGammaPXSec::~H3AMNuGammaPXSec ( )
virtual

Definition at line 36 of file H3AMNuGammaPXSec.cxx.

37{
38
39}

Member Function Documentation

◆ Configure() [1/2]

void H3AMNuGammaPXSec::Configure ( const Registry & config)
virtual

Configure the algorithm with an external registry The registry is merged with the top level registry if it is owned, Otherwise a copy of it is added with the highest priority

Reimplemented from genie::Algorithm.

Definition at line 100 of file H3AMNuGammaPXSec.cxx.

101{
102 Algorithm::Configure(config);
103 this->LoadConfig();
104}
virtual void Configure(const Registry &config)
Definition Algorithm.cxx:62

References genie::Algorithm::Configure(), and LoadConfig().

◆ Configure() [2/2]

void H3AMNuGammaPXSec::Configure ( string config)
virtual

Configure the algorithm from the AlgoConfigPool based on param_set string given in input An algorithm contains a vector of registries coming from different xml configuration files, which are loaded according a very precise prioriy This methods will load a number registries in order of priority: 1) "Tunable" parameter set from CommonParametes. This is loaded with the highest prioriry and it is designed to be used for tuning procedure Usage not expected from the user. 2) For every string defined in "CommonParame" the corresponding parameter set will be loaded from CommonParameter.xml 3) parameter set specified by the config string and defined in the xml file of the algorithm 4) if config is not "Default" also the Default parameter set from the same xml file will be loaded Effectively this avoids the repetion of a parameter when it is not changed in the requested configuration

Reimplemented from genie::Algorithm.

Definition at line 106 of file H3AMNuGammaPXSec.cxx.

107{
108 Algorithm::Configure(config);
109 this->LoadConfig();
110}

References genie::Algorithm::Configure(), and LoadConfig().

◆ Integral()

double H3AMNuGammaPXSec::Integral ( const Interaction * i) const
virtual

Integrate the model over the kinematic phase space available to the input interaction (kinematical cuts can be included)

Implements genie::XSecAlgorithmI.

Definition at line 53 of file H3AMNuGammaPXSec.cxx.

54{
55 // Compute the cross section for a free nucleon target
56 const InitialState & init_state = interaction -> InitState();
57 const Target & target = init_state.Tgt();
58 double Ev = init_state.ProbeE(kRfHitNucRest);
59
60 double Ecutoff = kNucleonMass / 2;
61
62 if(Ev > Ecutoff) return 0;
63
64 double xsec0 = 2.2E-41 * units::cm2;
65 double xsec = xsec0 * TMath::Power(Ev,6.) * TMath::Power(0.1*fGw,4.);
66
67 LOG("AMNuGamma", pNOTICE)
68 << "*** xsec(vN->vNgamma) [free nuc](Ev="<< Ev << ") = "<< xsec;
69
70#ifdef __GENIE_LOW_LEVEL_MESG_ENABLED__
71 LOG("AMNuGamma", pDEBUG)
72 << "*** xsec(vN->vNgamma) [free nuc](Ev="<< Ev << ") = "<< xsec;
73#endif
74
75 // If requested return the free xsec even for nuclear target
76 if( interaction->TestBit(kIAssumeFreeNucleon) ) return xsec;
77
78 // Scale for the number of scattering centers at the target
79 int nucpdgc = target.HitNucPdg();
80 int NNucl = (pdg::IsProton(nucpdgc)) ? target.Z() : target.N();
81 xsec*=NNucl;
82
83 return xsec;
84}
#define pNOTICE
Definition Messenger.h:61
#define pDEBUG
Definition Messenger.h:63
#define LOG(stream, priority)
A macro that returns the requested log4cpp::Category appending a string (using the FILE,...
Definition Messenger.h:96
const Target & Tgt(void) const
double ProbeE(RefFrame_t rf) const
int HitNucPdg(void) const
Definition Target.cxx:304
int N(void) const
Definition Target.h:69
int Z(void) const
Definition Target.h:68
bool IsProton(int pdgc)
Definition PDGUtils.cxx:336
static constexpr double cm2
Definition Units.h:69
@ kRfHitNucRest
Definition RefFrame.h:30
const UInt_t kIAssumeFreeNucleon
Definition Interaction.h:49

References genie::units::cm2, fGw, genie::Target::HitNucPdg(), genie::pdg::IsProton(), genie::kIAssumeFreeNucleon, genie::constants::kNucleonMass, genie::kRfHitNucRest, LOG, genie::Target::N(), pDEBUG, pNOTICE, genie::InitialState::ProbeE(), genie::InitialState::Tgt(), and genie::Target::Z().

◆ LoadConfig()

void H3AMNuGammaPXSec::LoadConfig ( void )
private

Definition at line 112 of file H3AMNuGammaPXSec.cxx.

113{
114
115 GetParam( "AMNuGamma-Gw", fGw ) ;
116
117}
bool GetParam(const RgKey &name, T &p, bool is_top_call=true) const

References fGw, and genie::Algorithm::GetParam().

Referenced by Configure(), and Configure().

◆ ValidKinematics()

bool H3AMNuGammaPXSec::ValidKinematics ( const Interaction * i) const
virtual

Is the input kinematical point a physically allowed one?

Reimplemented from genie::XSecAlgorithmI.

Definition at line 94 of file H3AMNuGammaPXSec.cxx.

95{
96 if(interaction->TestBit(kISkipKinematicChk)) return true;
97 return true;
98}
const UInt_t kISkipKinematicChk
if set, skip kinematic validity checks
Definition Interaction.h:48

References genie::kISkipKinematicChk.

Referenced by XSec().

◆ ValidProcess()

bool H3AMNuGammaPXSec::ValidProcess ( const Interaction * i) const
virtual

Can this cross section algorithm handle the input process?

Implements genie::XSecAlgorithmI.

Definition at line 86 of file H3AMNuGammaPXSec.cxx.

87{
88 if(interaction->TestBit(kISkipProcessChk)) return true;
89
90 if(interaction->ProcInfo().IsAMNuGamma()) return true;
91 return false;
92}
const UInt_t kISkipProcessChk
if set, skip process validity checks
Definition Interaction.h:47

References genie::ProcessInfo::IsAMNuGamma(), genie::kISkipProcessChk, and genie::Interaction::ProcInfo().

Referenced by XSec().

◆ XSec()

double H3AMNuGammaPXSec::XSec ( const Interaction * i,
KinePhaseSpace_t k ) const
virtual

Compute the cross section for the input interaction.

Implements genie::XSecAlgorithmI.

Definition at line 41 of file H3AMNuGammaPXSec.cxx.

43{
44 if(! this -> ValidProcess (interaction) ) return 0.;
45 if(! this -> ValidKinematics (interaction) ) return 0.;
46
47 LOG("AMNuGamma", pWARN)
48 << "*** No differential cross section calculation is implemented yet";
49
50 return 1;
51}
#define pWARN
Definition Messenger.h:60
bool ValidKinematics(const Interaction *i) const
Is the input kinematical point a physically allowed one?
bool ValidProcess(const Interaction *i) const
Can this cross section algorithm handle the input process?

References LOG, pWARN, ValidKinematics(), and ValidProcess().

Member Data Documentation

◆ fGw

double genie::H3AMNuGammaPXSec::fGw
private

Definition at line 49 of file H3AMNuGammaPXSec.h.

Referenced by Integral(), and LoadConfig().


The documentation for this class was generated from the following files: