Belle II Software development
|
Classes | |
class | ADCCountTranslatorBase |
Abstract Base class for the ADC count translator. More... | |
class | CDCCalibrationCollectorModule |
Collect hit information for cdc calibration with CAF. More... | |
class | CDCChannelData |
CDCChannelData. More... | |
class | CDCCosmicAnalysisModule |
Analysis module for CDC CR data. More... | |
class | CDCCRTestModule |
CDC Cosmic test calibration module. More... | |
class | CDCCrudeT0CollectorModule |
Collector for crude t0. More... | |
class | CDCFudgeFactorCalibrationCollectorModule |
Collect hit information for cdc calibration with CAF. More... | |
class | CDCGeoControlPar |
The Class for CDC Geometry Control Parameters. More... | |
class | CDCGeometryPar |
The Class for CDC Geometry Parameters. More... | |
class | CDCGeometryTranslatorBase |
Abstract Base class for the geometry translator. More... | |
class | CDCHitFilterModule |
CDCHitFilter: Filters CDC hits according to given configuration criteria. More... | |
class | CDCPackerModule |
CDCPackerModule: The CDC Raw Hits Decoder. More... | |
class | CDCRecoTrackFilterModule |
The module excluding hits of specified Slayers in the RecoTracks. More... | |
class | CDCSensitiveDetector |
The Class for CDC Sensitive Detector. More... | |
class | CDCSimControlPar |
The Class for CDC Simulation Control Parameters. More... | |
class | CDCT0CalibrationCollectorModule |
Collect hit information for cdc calibration with CAF. More... | |
class | CDCUnpackerModule |
CDCUnpackerModule: The CDC Raw Hits Decoder. More... | |
class | CrudeT0CalibrationAlgorithm |
Algorithm class for crude T0 calibration. More... | |
class | EDepInGas |
The Class for Energy deposit in the gas. More... | |
class | FudgeFactorCalibrationAlgorithm |
Class for CDC fudge factor calibration . More... | |
class | GeoCDCCreator |
The GeoCDCCreator class. More... | |
class | GeoCDCCreatorReducedCDC |
The GeoCDCCreatorReducedCDC class. More... | |
class | Helix |
Helix parameter class. More... | |
class | IdealCDCGeometryTranslator |
This class uses the ideal detector geometry for the translation of wire IDs into geometric positions. More... | |
class | LinearGlobalADCCountTranslator |
This class simply assumes a linear translation through (0,0) More... | |
class | RealisticCDCGeometryTranslator |
This class uses the realistic detector geometry (the one after alignment procedure) for the translation of wire IDs into geometric positions. More... | |
class | RealisticTDCCountTranslator |
Translator mirroring the realistic Digitization. More... | |
class | SpaceResolutionCalibration |
Class for Space resolution calibration. More... | |
class | SpaceResolutionCalibrationAlgorithm |
Class for Space resolution calibration. More... | |
class | T0CalibrationAlgorithm |
Class for T0 Correction . More... | |
class | T0Correction |
Class for T0 Correction . More... | |
class | TDCCountTranslatorBase |
Base class for translation of Drift Time into Drift Length. More... | |
class | TimeWalkCalibration |
Class for Time walk calibration. More... | |
class | TimeWalkCalibrationAlgorithm |
Class for Time walk calibration. More... | |
class | WireEfficiencyAlgorithm |
Class for Wire Efficiency estimation. More... | |
class | XTCalibration |
Class to perform xt calibration for drift chamber. More... | |
class | XTCalibrationAlgorithm |
Class to perform xt calibration for drift chamber. More... | |
class | XTFunction |
Class to perform fitting for each xt function. More... | |
Enumerations | |
enum | { c_Left = 0 , c_Right = 1 } |
Argument LR. More... | |
enum | { c_Polynomial = 0 , c_Chebyshev = 1 } |
Argument of fitting function. More... | |
enum | FitStatus { c_lowStat = -1 , c_fitFailure = 0 , c_OK = 1 , c_errorOuter = 2 , c_errorInner = 3 } |
Fit Status. More... | |
Functions | |
Double_t | pol5pol1 (Double_t *x, Double_t *par) |
helper function to initialize xt function with 5th order polynomial + linear. | |
Double_t | cheby5pol1 (Double_t *x, Double_t *par) |
helper function to initialize xt function with 5th order Chebshev Polynomial + linear. | |
double | ClosestApproach (const B2Vector3D &bwp, const B2Vector3D &fwp, const B2Vector3D &posIn, const B2Vector3D &posOut, B2Vector3D &hitPosition, B2Vector3D &wirePosition) |
Returns a closest distance between a track and a wire. | |
void | openFileA (std::ifstream &ifs, const std::string &fileName0) |
Open a file. | |
void | openFileB (boost::iostreams::filtering_istream &ifs, const std::string &fileName0) |
Open a file using boost (to be able to read a gzipped file) | |
Variables | |
geometry::CreatorFactory< GeoCDCCreator > | GeoCDCFactory ("CDCCreator") |
Register the GeoCreator. | |
geometry::CreatorFactory< GeoCDCCreatorReducedCDC > | GeoCDCFactoryReducedCDC ("CDCCreatorReducedCDC") |
Register the GeoCreator. | |
anonymous enum |
anonymous enum |
Argument of fitting function.
Definition at line 33 of file XTCalibrationAlgorithm.h.
enum FitStatus |
Fit Status.
=-1: low statitic =1: good =0: Fit failure =2: Error Outer =3: Error Inner part;
Definition at line 44 of file XTCalibrationAlgorithm.h.
Double_t cheby5pol1 | ( | Double_t * | x, |
Double_t * | par | ||
) |
helper function to initialize xt function with 5th order Chebshev Polynomial + linear.
Definition at line 48 of file XTFunction.h.
double ClosestApproach | ( | const B2Vector3D & | bwp, |
const B2Vector3D & | fwp, | ||
const B2Vector3D & | posIn, | ||
const B2Vector3D & | posOut, | ||
B2Vector3D & | hitPosition, | ||
B2Vector3D & | wirePosition | ||
) |
Returns a closest distance between a track and a wire.
[in] | bwp | wire position at backward |
[in] | fwp | wire position at forward |
[in] | posIn | entrance position |
[in] | posOut | exit position |
[out] | hitPosition | track position corresp. to the closetst distance |
[out] | wirePosition | wire position corresp. to the closetst distance |
Definition at line 17 of file ClosestApproach.cc.
void openFileA | ( | std::ifstream & | ifs, |
const std::string & | fileName0 | ||
) |
Open a file.
[in] | ifs | input file-stream |
[in] | fileName0 | file-name on cdc/data directory |
Definition at line 26 of file OpenFile.cc.
void openFileB | ( | boost::iostreams::filtering_istream & | ifs, |
const std::string & | fileName0 | ||
) |
Open a file using boost (to be able to read a gzipped file)
[in] | ifs | input file-stream |
[in] | fileName0 | file-name on cdc/data directory |
Definition at line 45 of file OpenFile.cc.
Double_t pol5pol1 | ( | Double_t * | x, |
Double_t * | par | ||
) |
helper function to initialize xt function with 5th order polynomial + linear.
Definition at line 27 of file XTFunction.h.