Jpp
Public Member Functions | Public Attributes | List of all members
JAANET::cut_primary Struct Reference

Phase space of primary particle. More...

#include <JHead.hh>

Inheritance diagram for JAANET::cut_primary:
JAANET::cut

Public Member Functions

 ClassDefNV (cut_primary, 1)
 
bool less (const cut &object) const
 Comparison. More...
 
bool match (const cut &object) const
 Test match. More...
 
 ClassDefNV (cut, 1)
 

Public Attributes

double Emin
 Minimal energy [GeV]. More...
 
double Emax
 Maximal energy [GeV]. More...
 
double cosTmin
 Minimal cosine zenith angle. More...
 
double cosTmax
 Maximal cosine zenith angle. More...
 

Detailed Description

Phase space of primary particle.

Definition at line 222 of file JHead.hh.

Member Function Documentation

◆ ClassDefNV() [1/2]

JAANET::cut_primary::ClassDefNV ( cut_primary  ,
 
)

◆ less()

bool JAANET::cut::less ( const cut object) const
inlineinherited

Comparison.

Parameters
objectcut
Returns
true if this cut less than given cut; else false

Definition at line 187 of file JHead.hh.

188  {
189  if (Emin == object.Emin &&
190  Emax == object.Emax)
191  return cosTmax < object.cosTmin;
192  else
193  return Emax < object.Emin;
194  }

◆ match()

bool JAANET::cut::match ( const cut object) const
inlineinherited

Test match.

Parameters
objectcut
Returns
true if matches; else false

Definition at line 202 of file JHead.hh.

203  {
204  return (Emin == object.Emin &&
205  Emax == object.Emax &&
206  cosTmin == object.cosTmin &&
207  cosTmax == object.cosTmax);
208  }

◆ ClassDefNV() [2/2]

JAANET::cut::ClassDefNV ( cut  ,
 
)
inherited

Member Data Documentation

◆ Emin

double JAANET::cut::Emin
inherited

Minimal energy [GeV].

Definition at line 210 of file JHead.hh.

◆ Emax

double JAANET::cut::Emax
inherited

Maximal energy [GeV].

Definition at line 211 of file JHead.hh.

◆ cosTmin

double JAANET::cut::cosTmin
inherited

Minimal cosine zenith angle.

Definition at line 212 of file JHead.hh.

◆ cosTmax

double JAANET::cut::cosTmax
inherited

Maximal cosine zenith angle.

Definition at line 213 of file JHead.hh.


The documentation for this struct was generated from the following file:
JAANET::cut::cosTmin
double cosTmin
Minimal cosine zenith angle.
Definition: JHead.hh:212
JAANET::cut::cosTmax
double cosTmax
Maximal cosine zenith angle.
Definition: JHead.hh:213
JAANET::cut::Emax
double Emax
Maximal energy [GeV].
Definition: JHead.hh:211
JAANET::cut::Emin
double Emin
Minimal energy [GeV].
Definition: JHead.hh:210