Extended data structure for parameters of stage.
More...
Extended data structure for parameters of stage.
Definition at line 497 of file JSydney.cc.
◆ JParameters_t()
JACOUSTICS::JSydney::JParameters_t::JParameters_t |
( |
| ) |
|
|
inline |
Default constuctor.
Definition at line 503 of file JSydney.cc.
503 :
504 Nmax (std::numeric_limits<size_t>::max()),
508 {}
◆ ClassDef()
◆ operator>>
std::istream & operator>> |
( |
std::istream & | in, |
|
|
JParameters_t & | object ) |
|
friend |
Read parameters from input stream.
- Parameters
-
in | input stream |
object | parameters |
- Returns
- input stream
Definition at line 518 of file JSydney.cc.
519 {
521
522 in >> object.option
523 >> object.mestimator
524 >> object.sigma_s
525 >> object.stdev
526 >> object.Nextra;
527
528 if (in) {
529
530 for (double value; in >> value; ) {
531 object.steps.push_back(value);
532 }
533
534 if (!in.bad()) {
535 in.clear();
536 }
537 }
538
539 return in;
540 }
JParameters_t()
Default constuctor.
◆ operator<<
std::ostream & operator<< |
( |
std::ostream & | out, |
|
|
const JParameters_t & | object ) |
|
friend |
Write parameters to output stream.
- Parameters
-
out | output stream |
object | parameters |
- Returns
- output stream
Definition at line 550 of file JSydney.cc.
551 {
553
554 out << setw(2) << object.option << ' '
555 << setw(2) << object.mestimator << ' '
558 << setw(3) << object.Nextra;
559
560 for (
const double value :
object.
steps) {
561 out <<
' ' <<
FIXED(9,5) << value;
562 }
563
564 return out;
565 }
Auxiliary data structure for floating point format specification.
std::vector< double > steps
Auxiliary data structure for floating point format specification.
◆ Nmax
size_t JACOUSTICS::JSydney::JParameters_t::Nmax |
◆ Nextra
size_t JACOUSTICS::JSydney::JParameters_t::Nextra |
◆ epsilon
double JACOUSTICS::JSydney::JParameters_t::epsilon |
◆ debug
int JACOUSTICS::JSydney::JParameters_t::debug |
◆ steps
std::vector<double> JACOUSTICS::JSydney::JParameters_t::steps |
◆ Qmin
double JACOUSTICS::JFitParameters::Qmin |
|
inherited |
◆ mestimator
int JACOUSTICS::JFitParameters::mestimator |
|
inherited |
◆ sigma_s
double JACOUSTICS::JFitParameters::sigma_s |
|
inherited |
◆ Tmax_s
double JACOUSTICS::JFitParameters::Tmax_s |
|
inherited |
◆ Nmin
size_t JACOUSTICS::JFitParameters::Nmin |
|
inherited |
◆ stdev
double JACOUSTICS::JFitParameters::stdev |
|
inherited |
◆ option
int JACOUSTICS::JFitParameters::option |
|
inherited |
◆ chi2perNDF
double JACOUSTICS::JFitParameters::chi2perNDF |
|
inherited |
◆ deadTime_s
double JACOUSTICS::JFitParameters::deadTime_s |
|
inherited |
The documentation for this struct was generated from the following file: