All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SRFlashMatch.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 // \file SRFlashMatch.h
3 // \brief SRFlashMatch object for flashmatch summary information.
4 // \author $Author: psihas@fnal.gov
5 ////////////////////////////////////////////////////////////////////////
6 #ifndef SRFLASHMATCH_H
7 #define SRFLASHMATCH_H
8 
10 
11 
12 namespace caf
13 {
14  /// A matching of TPC flashmatch charge to Optical flash light
16  {
17  public:
18  SRFlashMatch();
19  virtual ~SRFlashMatch();
20 
21  bool present; //!< whether there's a match
22  float time; //!< time of flash
23  float chargeQ; //!< charge in slc
24  SRVector3D chargeCenter; //!< Weighted center position [cm]
25  float lightPE; //!< photo-electrons on simple flash
26  SRVector3D lightCenter; //!< Weighted center position [cm]
27  float score; //!< total score, sum of terms
28  float scoreY; //!< score for y metric
29  float scoreZ; //!< score for z metric
30  float scoreRR; //!< score for rr metric
31  float scoreRatio; //!< score for ratio metric
32 
33  void setDefault();
34  };
35 } // end namespace
36 
37 #endif // SRFLASHMATCH_H
38 //////////////////////////////////////////////////////////////////////////////
bool present
whether there&#39;s a match
Definition: SRFlashMatch.h:21
A 3-vector with more efficient storage than TVector3.
Definition: SRVector3D.h:16
float scoreRR
score for rr metric
Definition: SRFlashMatch.h:30
SRVector3D lightCenter
Weighted center position [cm].
Definition: SRFlashMatch.h:26
float scoreY
score for y metric
Definition: SRFlashMatch.h:28
float chargeQ
charge in slc
Definition: SRFlashMatch.h:23
float lightPE
photo-electrons on simple flash
Definition: SRFlashMatch.h:25
virtual ~SRFlashMatch()
float score
total score, sum of terms
Definition: SRFlashMatch.h:27
SRVector3D chargeCenter
Weighted center position [cm].
Definition: SRFlashMatch.h:24
float scoreRatio
score for ratio metric
Definition: SRFlashMatch.h:31
float scoreZ
score for z metric
Definition: SRFlashMatch.h:29
A matching of TPC flashmatch charge to Optical flash light.
Definition: SRFlashMatch.h:15
float time
time of flash
Definition: SRFlashMatch.h:22