OPALX (Object Oriented Parallel Accelerator Library for Exascal) master (dc2a29eed580)
OPALX
Loading...
Searching...
No Matches
PeakFinder Class Reference

#include <PeakFinder.h>

Collaboration diagram for PeakFinder:
Collaboration graph

Public Types

using container_t = std::vector< double >
 

Public Member Functions

 PeakFinder ()=delete
 
 PeakFinder (std::string elem, double min, double max, double binwidth, bool singlemode)
 
void addParticle (const Vector_t< double, 3 > &R)
 
void evaluate (const int &turn)
 
void save ()
 

Private Member Functions

void createHistogram_m ()
 
void open_m ()
 Open output file.
 
void append_m ()
 Open output file in append mode.
 
void close_m ()
 Close output file.
 
void saveASCII_m ()
 Write to output file.
 
void computeCentroid_m ()
 

Private Attributes

container_t radius_m
 
container_t globHist_m
 global histogram values
 
std::string fileName_m
 filename with extension (.peaks)
 
std::string hist_m
 histogram filename with extension (.hist)
 
std::ofstream os_m
 used to write out the data
 
std::ofstream hos_m
 used to write out the histrogram
 
std::string outputName_m
 Element/probe name, for name output file.
 
unsigned int nBins_m
 Number of bins.
 
double binWidth_m
 Bin width in mm.
 
double min_m
 histogram size
 
double max_m
 
int turn_m
 
double peakRadius_m
 
int registered_m
 
std::list< double > peaks_m
 
bool singlemode_m
 
bool first_m
 
bool finished_m
 

Detailed Description

Definition at line 32 of file PeakFinder.h.

Member Typedef Documentation

◆ container_t

using PeakFinder::container_t = std::vector<double>

Definition at line 34 of file PeakFinder.h.

Constructor & Destructor Documentation

◆ PeakFinder() [1/2]

PeakFinder::PeakFinder ( )
delete

◆ PeakFinder() [2/2]

PeakFinder::PeakFinder ( std::string  elem,
double  min,
double  max,
double  binwidth,
bool  singlemode 
)

Definition at line 34 of file PeakFinder.cpp.

References binWidth_m, max_m, min_m, and nBins_m.

Member Function Documentation

◆ addParticle()

void PeakFinder::addParticle ( const Vector_t< double, 3 > &  R)

Append the particle coordinates to the container

Parameters
Ris a particle position (x, y, z)

Definition at line 52 of file PeakFinder.cpp.

References peakRadius_m, radius_m, and registered_m.

◆ append_m()

void PeakFinder::append_m ( )
private

Open output file in append mode.

Definition at line 167 of file PeakFinder.cpp.

References fileName_m, hist_m, hos_m, and os_m.

Referenced by save().

◆ close_m()

void PeakFinder::close_m ( )
private

Close output file.

Definition at line 172 of file PeakFinder.cpp.

References hos_m, and os_m.

Referenced by save().

◆ computeCentroid_m()

void PeakFinder::computeCentroid_m ( )
private

Definition at line 119 of file PeakFinder.cpp.

References peakRadius_m, peaks_m, registered_m, and singlemode_m.

Referenced by evaluate(), and save().

◆ createHistogram_m()

void PeakFinder::createHistogram_m ( )
private

Definition at line 136 of file PeakFinder.cpp.

References binWidth_m, globHist_m, min_m, nBins_m, radius_m, and singlemode_m.

Referenced by save().

◆ evaluate()

void PeakFinder::evaluate ( const int &  turn)

Evaluate the centroid of a turn.

Definition at line 60 of file PeakFinder.cpp.

References computeCentroid_m(), finished_m, first_m, peakRadius_m, registered_m, singlemode_m, and turn_m.

Here is the call graph for this function:

◆ open_m()

void PeakFinder::open_m ( )
private

Open output file.

Definition at line 162 of file PeakFinder.cpp.

References fileName_m, hist_m, hos_m, and os_m.

Referenced by save().

◆ save()

void PeakFinder::save ( )

◆ saveASCII_m()

void PeakFinder::saveASCII_m ( )
private

Write to output file.

Definition at line 177 of file PeakFinder.cpp.

References binWidth_m, globHist_m, hos_m, max_m, min_m, nBins_m, os_m, and peaks_m.

Referenced by save().

Member Data Documentation

◆ binWidth_m

double PeakFinder::binWidth_m
private

Bin width in mm.

Definition at line 96 of file PeakFinder.h.

Referenced by createHistogram_m(), PeakFinder(), and saveASCII_m().

◆ fileName_m

std::string PeakFinder::fileName_m
private

filename with extension (.peaks)

Definition at line 78 of file PeakFinder.h.

Referenced by append_m(), open_m(), and save().

◆ finished_m

bool PeakFinder::finished_m
private

Definition at line 106 of file PeakFinder.h.

Referenced by evaluate().

◆ first_m

bool PeakFinder::first_m
private

Definition at line 105 of file PeakFinder.h.

Referenced by evaluate().

◆ globHist_m

container_t PeakFinder::globHist_m
private

global histogram values

Definition at line 75 of file PeakFinder.h.

Referenced by createHistogram_m(), save(), and saveASCII_m().

◆ hist_m

std::string PeakFinder::hist_m
private

histogram filename with extension (.hist)

Definition at line 81 of file PeakFinder.h.

Referenced by append_m(), open_m(), and save().

◆ hos_m

std::ofstream PeakFinder::hos_m
private

used to write out the histrogram

Definition at line 87 of file PeakFinder.h.

Referenced by append_m(), close_m(), open_m(), and saveASCII_m().

◆ max_m

double PeakFinder::max_m
private

Definition at line 98 of file PeakFinder.h.

Referenced by PeakFinder(), and saveASCII_m().

◆ min_m

double PeakFinder::min_m
private

histogram size

Definition at line 98 of file PeakFinder.h.

Referenced by createHistogram_m(), PeakFinder(), and saveASCII_m().

◆ nBins_m

unsigned int PeakFinder::nBins_m
private

Number of bins.

Definition at line 94 of file PeakFinder.h.

Referenced by createHistogram_m(), PeakFinder(), and saveASCII_m().

◆ os_m

std::ofstream PeakFinder::os_m
private

used to write out the data

Definition at line 84 of file PeakFinder.h.

Referenced by append_m(), close_m(), open_m(), and saveASCII_m().

◆ outputName_m

std::string PeakFinder::outputName_m
private

Element/probe name, for name output file.

Definition at line 90 of file PeakFinder.h.

Referenced by save().

◆ peakRadius_m

double PeakFinder::peakRadius_m
private

Definition at line 101 of file PeakFinder.h.

Referenced by addParticle(), computeCentroid_m(), and evaluate().

◆ peaks_m

std::list<double> PeakFinder::peaks_m
private

Definition at line 103 of file PeakFinder.h.

Referenced by computeCentroid_m(), save(), and saveASCII_m().

◆ radius_m

container_t PeakFinder::radius_m
private

Definition at line 73 of file PeakFinder.h.

Referenced by addParticle(), createHistogram_m(), and save().

◆ registered_m

int PeakFinder::registered_m
private

Definition at line 102 of file PeakFinder.h.

Referenced by addParticle(), computeCentroid_m(), and evaluate().

◆ singlemode_m

bool PeakFinder::singlemode_m
private

Definition at line 104 of file PeakFinder.h.

Referenced by computeCentroid_m(), createHistogram_m(), and evaluate().

◆ turn_m

int PeakFinder::turn_m
private

Definition at line 100 of file PeakFinder.h.

Referenced by evaluate().


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