Jpp  17.2.0
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::JShowerPointSimplexParameters_t Struct Reference

#include <JShowerPointSimplexParameters_t.hh>

Inheritance diagram for JRECONSTRUCTION::JShowerPointSimplexParameters_t:
TObject JRECONSTRUCTION::JShowerPointSimplex

Public Member Functions

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

Public Attributes

size_t numberOfPrefits
 number of prefits More...
 
size_t numberOfOutfits
 number of fits to be saved in output More...
 
size_t minPrefitsSize
 number of prefits under which an event is treated as a very low energy one More...
 
double sigma_ns
 time resolution [ns] More...
 
double TMaxLocal_ns
 time window for local coincidences [ns] More...
 
double TMax_ns
 maximum time for local coincidences [ns] More...
 
double TMin_ns
 minimum time for local coincidences [ns] More...
 
double roadWidth_m
 road width [m] More...
 
double ctMin
 minimal cosine space angle between PMT axes More...
 
JRange_t TWindow_ns
 time window for local coincidences [ns] for events with few prefits More...
 
JRange_t pos_grid_m
 edges in [m] of the position grid More...
 
double pos_step_m
 step in [m] of position grid More...
 
JRange_t time_grid_ns
 edges in [ns] of the time grid More...
 
double time_step_ns
 step in [ns] of time grid More...
 
double simplex_step_m
 step in [m] of JSimplex minimiser More...
 
double simplex_step_ns
 step in [ns] of JSimplex minimiser More...
 
double tukey_std_dev
 standard deviation of Tukey estimator More...
 
int NMax
 maximum number of iterations More...
 

Detailed Description

Definition at line 14 of file JShowerPointSimplexParameters_t.hh.

Constructor & Destructor Documentation

JRECONSTRUCTION::JShowerPointSimplexParameters_t::JShowerPointSimplexParameters_t ( )
inline

Default constructor.

Definition at line 20 of file JShowerPointSimplexParameters_t.hh.

21  {
22  this->reset();
23  }
virtual JRECONSTRUCTION::JShowerPointSimplexParameters_t::~JShowerPointSimplexParameters_t ( )
inlinevirtual

Virtual destructor.

Definition at line 28 of file JShowerPointSimplexParameters_t.hh.

29  {}

Member Function Documentation

void JRECONSTRUCTION::JShowerPointSimplexParameters_t::reset ( )
inline

Reset fit parameters.

Definition at line 34 of file JShowerPointSimplexParameters_t.hh.

35  {
36  numberOfPrefits = 0; // 0 means process all inputs
37  numberOfOutfits = 100;
38  minPrefitsSize = 8;
39  sigma_ns = 1;
40  TMaxLocal_ns = 10;
41  TMax_ns = 60.0;
42  TMin_ns = -60.0;
43  roadWidth_m = 50.0;
44  ctMin = 0.2;
45  TWindow_ns = JRange_t(-130, 120);
46  pos_grid_m = JRange_t( -20, 20);
47  pos_step_m = 20;
48  time_grid_ns = JRange_t( -90, 90);
49  time_step_ns = 20;
50  simplex_step_m = 5;
51  simplex_step_ns = 10;
52  tukey_std_dev = 20;
53  NMax = 1000;
54  }
JRange_t pos_grid_m
edges in [m] of the position grid
JRange_t TWindow_ns
time window for local coincidences [ns] for events with few prefits
size_t numberOfOutfits
number of fits to be saved in output
double TMaxLocal_ns
time window for local coincidences [ns]
double simplex_step_ns
step in [ns] of JSimplex minimiser
double TMax_ns
maximum time for local coincidences [ns]
size_t minPrefitsSize
number of prefits under which an event is treated as a very low energy one
double TMin_ns
minimum time for local coincidences [ns]
double tukey_std_dev
standard deviation of Tukey estimator
double ctMin
minimal cosine space angle between PMT axes
bool JRECONSTRUCTION::JShowerPointSimplexParameters_t::equals ( const JShowerPointSimplexParameters_t parameters) const
inline

Equality.

Parameters
parametersfit parameters
Returns
true if equals; else false

Definition at line 62 of file JShowerPointSimplexParameters_t.hh.

63  {
64  return (this->numberOfPrefits == parameters.numberOfPrefits &&
65  this->numberOfOutfits == parameters.numberOfOutfits &&
66  this->minPrefitsSize == parameters.minPrefitsSize &&
67  this->sigma_ns == parameters.sigma_ns &&
68  this->TMaxLocal_ns == parameters.TMaxLocal_ns &&
69  this->TMax_ns == parameters.TMax_ns &&
70  this->TMin_ns == parameters.TMin_ns &&
71  this->roadWidth_m == parameters.roadWidth_m &&
72  this->ctMin == parameters.ctMin &&
73  this->TWindow_ns == parameters.TWindow_ns &&
74  this->pos_grid_m == parameters.pos_grid_m &&
75  this->pos_step_m == parameters.pos_step_m &&
76  this->time_grid_ns == parameters.time_grid_ns &&
77  this->time_step_ns == parameters.time_step_ns &&
78  this->simplex_step_m == parameters.simplex_step_m &&
79  this->simplex_step_ns == parameters.simplex_step_ns &&
80  this->tukey_std_dev == parameters.tukey_std_dev &&
81  this->NMax == parameters.NMax);
82  }
*fatal Wrong number of arguments esac JCookie sh typeset Z DETECTOR typeset Z SOURCE_RUN typeset Z TARGET_RUN set_variable PARAMETERS_FILE $WORKDIR parameters
Definition: diff-Tuna.sh:38
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
JRECONSTRUCTION::JShowerPointSimplexParameters_t::ClassDef ( JShowerPointSimplexParameters_t  ,
 
)

Member Data Documentation

size_t JRECONSTRUCTION::JShowerPointSimplexParameters_t::numberOfPrefits

number of prefits

Definition at line 86 of file JShowerPointSimplexParameters_t.hh.

size_t JRECONSTRUCTION::JShowerPointSimplexParameters_t::numberOfOutfits

number of fits to be saved in output

Definition at line 87 of file JShowerPointSimplexParameters_t.hh.

size_t JRECONSTRUCTION::JShowerPointSimplexParameters_t::minPrefitsSize

number of prefits under which an event is treated as a very low energy one

Definition at line 88 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::sigma_ns

time resolution [ns]

Definition at line 89 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::TMaxLocal_ns

time window for local coincidences [ns]

Definition at line 90 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::TMax_ns

maximum time for local coincidences [ns]

Definition at line 91 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::TMin_ns

minimum time for local coincidences [ns]

Definition at line 92 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::roadWidth_m

road width [m]

Definition at line 93 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::ctMin

minimal cosine space angle between PMT axes

Definition at line 94 of file JShowerPointSimplexParameters_t.hh.

JRange_t JRECONSTRUCTION::JShowerPointSimplexParameters_t::TWindow_ns

time window for local coincidences [ns] for events with few prefits

Definition at line 95 of file JShowerPointSimplexParameters_t.hh.

JRange_t JRECONSTRUCTION::JShowerPointSimplexParameters_t::pos_grid_m

edges in [m] of the position grid

Definition at line 96 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::pos_step_m

step in [m] of position grid

Definition at line 97 of file JShowerPointSimplexParameters_t.hh.

JRange_t JRECONSTRUCTION::JShowerPointSimplexParameters_t::time_grid_ns

edges in [ns] of the time grid

Definition at line 98 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::time_step_ns

step in [ns] of time grid

Definition at line 99 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::simplex_step_m

step in [m] of JSimplex minimiser

Definition at line 100 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::simplex_step_ns

step in [ns] of JSimplex minimiser

Definition at line 101 of file JShowerPointSimplexParameters_t.hh.

double JRECONSTRUCTION::JShowerPointSimplexParameters_t::tukey_std_dev

standard deviation of Tukey estimator

Definition at line 102 of file JShowerPointSimplexParameters_t.hh.

int JRECONSTRUCTION::JShowerPointSimplexParameters_t::NMax

maximum number of iterations

Definition at line 103 of file JShowerPointSimplexParameters_t.hh.


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