Jpp  16.0.2
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | Public Attributes | List of all members
JRECONSTRUCTION::JMuonGandalfParameters_t Struct Reference

Data structure for fit parameters. More...

#include <JMuonGandalfParameters_t.hh>

Inheritance diagram for JRECONSTRUCTION::JMuonGandalfParameters_t:
TObject JRECONSTRUCTION::JMuonGandalf

Public Member Functions

 JMuonGandalfParameters_t ()
 Default constructor. More...
 
virtual ~JMuonGandalfParameters_t ()
 Virtual destructor. More...
 
void reset ()
 Reset fit parameters. More...
 
bool equals (const JMuonGandalfParameters_t &parameters) const
 Equality. More...
 
 ClassDef (JMuonGandalfParameters_t, 2)
 

Public Attributes

double roadWidth_m
 road width [m] More...
 
double R_Hz
 default rate [Hz] More...
 
size_t numberOfPrefits
 number of prefits More...
 
double TTS_ns
 transition-time spread [ns] More...
 
double E_GeV
 energy [GeV] More...
 
double TMin_ns
 minimal time w.r.t. Cherenkov hypothesis [ns] More...
 
double TMax_ns
 maximal time w.r.t. Cherenkov hypothesis [ns] More...
 
double ZMin_m
 minimal z-positon [m] More...
 
double ZMax_m
 maximal z-positon [m] More...
 
double VMax_npe
 maximum number of of photo-electrons More...
 
int NMax
 maximum number of iterations More...
 
bool reprocess
 reprocess More...
 

Detailed Description

Data structure for fit parameters.

Definition at line 21 of file JMuonGandalfParameters_t.hh.

Constructor & Destructor Documentation

JRECONSTRUCTION::JMuonGandalfParameters_t::JMuonGandalfParameters_t ( )
inline

Default constructor.

Definition at line 27 of file JMuonGandalfParameters_t.hh.

28  {
29  this->reset();
30  }
virtual JRECONSTRUCTION::JMuonGandalfParameters_t::~JMuonGandalfParameters_t ( )
inlinevirtual

Virtual destructor.

Definition at line 35 of file JMuonGandalfParameters_t.hh.

36  {}

Member Function Documentation

void JRECONSTRUCTION::JMuonGandalfParameters_t::reset ( )
inline

Reset fit parameters.

Definition at line 41 of file JMuonGandalfParameters_t.hh.

42  {
43  roadWidth_m = std::numeric_limits<double>::max();
44  R_Hz = 6.0e3;
45  numberOfPrefits = 0;
46  TTS_ns = 2;
47  E_GeV = 1.0e3;
48  TMin_ns = -50.0;
49  TMax_ns = +450.0;
50  ZMin_m = 0.0;
51  ZMax_m = 0.0;
52  VMax_npe = 10.0;
53  NMax = 1000;
54  reprocess = false;
55  }
double TTS_ns
transition-time spread [ns]
double TMin_ns
minimal time w.r.t. Cherenkov hypothesis [ns]
double VMax_npe
maximum number of of photo-electrons
double TMax_ns
maximal time w.r.t. Cherenkov hypothesis [ns]
bool JRECONSTRUCTION::JMuonGandalfParameters_t::equals ( const JMuonGandalfParameters_t parameters) const
inline

Equality.

Parameters
parametersfit parameters
Returns
true if equals; else false

Definition at line 63 of file JMuonGandalfParameters_t.hh.

64  {
65  return (this->roadWidth_m == parameters.roadWidth_m &&
66  this->R_Hz == parameters.R_Hz &&
67  this->numberOfPrefits == parameters.numberOfPrefits &&
68  this->TTS_ns == parameters.TTS_ns &&
69  this->E_GeV == parameters.E_GeV &&
70  this->TMin_ns == parameters.TMin_ns &&
71  this->TMax_ns == parameters.TMax_ns &&
72  this->ZMin_m == parameters.ZMin_m &&
73  this->ZMax_m == parameters.ZMax_m &&
74  this->VMax_npe == parameters.VMax_npe &&
75  this->NMax == parameters.NMax &&
76  this->reprocess == parameters.reprocess);
77  }
double TTS_ns
transition-time spread [ns]
double TMin_ns
minimal time w.r.t. Cherenkov hypothesis [ns]
then usage $script< detector file >< detectorfile > nIf the range of floors is the first detector file is aligned to the second before the comparison nIn this
double VMax_npe
maximum number of of photo-electrons
double TMax_ns
maximal time w.r.t. Cherenkov hypothesis [ns]
JRECONSTRUCTION::JMuonGandalfParameters_t::ClassDef ( JMuonGandalfParameters_t  ,
 
)

Member Data Documentation

double JRECONSTRUCTION::JMuonGandalfParameters_t::roadWidth_m

road width [m]

Definition at line 81 of file JMuonGandalfParameters_t.hh.

double JRECONSTRUCTION::JMuonGandalfParameters_t::R_Hz

default rate [Hz]

Definition at line 82 of file JMuonGandalfParameters_t.hh.

size_t JRECONSTRUCTION::JMuonGandalfParameters_t::numberOfPrefits

number of prefits

Definition at line 83 of file JMuonGandalfParameters_t.hh.

double JRECONSTRUCTION::JMuonGandalfParameters_t::TTS_ns

transition-time spread [ns]

Definition at line 84 of file JMuonGandalfParameters_t.hh.

double JRECONSTRUCTION::JMuonGandalfParameters_t::E_GeV

energy [GeV]

Definition at line 85 of file JMuonGandalfParameters_t.hh.

double JRECONSTRUCTION::JMuonGandalfParameters_t::TMin_ns

minimal time w.r.t. Cherenkov hypothesis [ns]

Definition at line 86 of file JMuonGandalfParameters_t.hh.

double JRECONSTRUCTION::JMuonGandalfParameters_t::TMax_ns

maximal time w.r.t. Cherenkov hypothesis [ns]

Definition at line 87 of file JMuonGandalfParameters_t.hh.

double JRECONSTRUCTION::JMuonGandalfParameters_t::ZMin_m

minimal z-positon [m]

Definition at line 88 of file JMuonGandalfParameters_t.hh.

double JRECONSTRUCTION::JMuonGandalfParameters_t::ZMax_m

maximal z-positon [m]

Definition at line 89 of file JMuonGandalfParameters_t.hh.

double JRECONSTRUCTION::JMuonGandalfParameters_t::VMax_npe

maximum number of of photo-electrons

Definition at line 90 of file JMuonGandalfParameters_t.hh.

int JRECONSTRUCTION::JMuonGandalfParameters_t::NMax

maximum number of iterations

Definition at line 91 of file JMuonGandalfParameters_t.hh.

bool JRECONSTRUCTION::JMuonGandalfParameters_t::reprocess

reprocess

Definition at line 92 of file JMuonGandalfParameters_t.hh.


The documentation for this struct was generated from the following file: