Class Reference for E1039 Core & Analysis Software
|
SubsysReco module to calibrate the drift distance and also the in-time window of the chambers and the prop tube. More...
#include </dev/shm/kenichi/update-github-e1039-doc/e1039-analysis/RecalRealDst/src/CalibDriftDistMod.h>
Public Member Functions | |
CalibDriftDistMod (const std::string &name="CalibDriftDistMod") | |
virtual | ~CalibDriftDistMod () |
int | Init (PHCompositeNode *topNode) |
int | InitRun (PHCompositeNode *topNode) |
int | process_event (PHCompositeNode *topNode) |
int | End (PHCompositeNode *topNode) |
Called at the end of all processing. More... | |
void | SetResolution (const double reso_d0, const double reso_d1, const double reso_d2, const double reso_d3p, const double reso_d3m) |
Set the plane resolutions in cm. More... | |
void | ReadParamFromFile (const char *fn_xt_curve) |
CalibParamXT * | GetParamXT () |
![]() | |
virtual | ~SubsysReco () |
virtual int | EndRun (const int) |
Called at the end of each run. More... | |
virtual int | Reset (PHCompositeNode *) |
Reset. More... | |
virtual int | ResetEvent (PHCompositeNode *) |
Clean up after each event. More... | |
virtual void | Print (const std::string &what="ALL") const |
![]() | |
virtual | ~Fun4AllBase () |
virtual const std::string | Name () const |
Returns the name of this module. More... | |
virtual void | Name (const std::string &name) |
Sets the name of this module. More... | |
virtual void | Verbosity (const int ival) |
Sets the verbosity of this module (0 by default=quiet). More... | |
virtual void | Verbosity (enu_Verbosity ival) |
Sets the verbosity of this module (0 by default=quiet). More... | |
virtual int | Verbosity () const |
Gets the verbosity of this module. More... | |
Additional Inherited Members | |
![]() | |
enum | enu_Verbosity { VERBOSITY_QUIET = 0 , VERBOSITY_SOME = 1 , VERBOSITY_MORE = 2 , VERBOSITY_EVEN_MORE = 3 , VERBOSITY_A_LOT = 4 , VERBOSITY_MAX = INT_MAX - 10 } |
![]() | |
SubsysReco (const std::string &name="NONAME") | |
![]() | |
Fun4AllBase (const std::string &name="NONAME") | |
![]() | |
std::string | ThisName |
int | verbosity |
The verbosity level. 0 means not verbose at all. More... | |
SubsysReco module to calibrate the drift distance and also the in-time window of the chambers and the prop tube.
This module automatically selects a proper set of calibration parameters based on the run number. Only when necessary, you can manually give a parameter set via ReadParamFromFile()
.
Definition at line 12 of file CalibDriftDistMod.h.
CalibDriftDistMod::CalibDriftDistMod | ( | const std::string & | name = "CalibDriftDistMod" | ) |
Definition at line 16 of file CalibDriftDistMod.cc.
|
virtual |
Definition at line 31 of file CalibDriftDistMod.cc.
|
virtual |
Called at the end of all processing.
Reimplemented from SubsysReco.
Definition at line 121 of file CalibDriftDistMod.cc.
References Fun4AllReturnCodes::EVENT_OK.
|
inline |
Definition at line 36 of file CalibDriftDistMod.h.
|
virtual |
Called during initialization, i.e. registered via Fun4AllServer::registerSubsystem(). Typically this is where you can book histograms, and e.g. register them to Fun4AllServer (so they can be output to file using Fun4AllServer::dumpHistos() method).
Reimplemented from SubsysReco.
Definition at line 36 of file CalibDriftDistMod.cc.
References Fun4AllReturnCodes::EVENT_OK, RunParamBase::ReadFromLocalFile(), and RunParamBase::SetMapID().
|
virtual |
Called for first event when run number is known. Typically this is where you may want to fetch data from database, because you know the run number.
Reimplemented from SubsysReco.
Definition at line 46 of file CalibDriftDistMod.cc.
References Fun4AllReturnCodes::ABORTEVENT, Plane::detectorName, Fun4AllReturnCodes::EVENT_OK, PHFlag::get_IntFlag(), RunParamBase::GetMapID(), RunParamBase::GetParamID(), GeomSvc::getPlanePtr(), recoConsts::instance(), GeomSvc::instance(), Fun4AllBase::Name(), nChamberPlanes, RunParamBase::ReadFromDB(), Plane::resolution, recoConsts::set_CharFlag(), SQParamDeco::set_variable(), RunParamBase::SetMapIDbyDB(), and Fun4AllBase::Verbosity().
|
virtual |
Called for each event. This is where you do the real work.
No field for resolution in SQHit now.
Reimplemented from SubsysReco.
Definition at line 94 of file CalibDriftDistMod.cc.
References SQHitVector::begin(), SQHitVector::end(), Fun4AllReturnCodes::EVENT_OK, SQHit::get_detector_id(), SQHit::get_element_id(), SQHit::get_tdc_time(), GeomSvc::getMeasurement(), CalibParamXT::GetParam(), GeomSvc::instance(), GeomSvc::isChamber(), GeomSvc::isPropTube(), SQHit::set_drift_distance(), SQHit::set_in_time(), SQHit::set_pos(), CalibParamXT::Set::T1, and CalibParamXT::Set::t2x.
void CalibDriftDistMod::ReadParamFromFile | ( | const char * | fn_xt_curve | ) |
Definition at line 139 of file CalibDriftDistMod.cc.
void CalibDriftDistMod::SetResolution | ( | const double | reso_d0, |
const double | reso_d1, | ||
const double | reso_d2, | ||
const double | reso_d3p, | ||
const double | reso_d3m | ||
) |
Set the plane resolutions in cm.
The resolution values are passed to GeomSvc
in InitRun()
later. They will be used in Tracklet::calcChisq()
of FastTracklet.cxx
for example.
Definition at line 130 of file CalibDriftDistMod.cc.