Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
BbcPmtHitV1.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file BbcPmtHitV1.cc
1 #include "BbcPmtHitV1.h"
2 
4 {
5  Clear();
6 }
7 
8 void BbcPmtHitV1::Clear(Option_t* /*unused*/)
9 {
10  // std::cout << "clearing " << bpmt << std::endl;
11  bpmt = -1;
12  bq = std::numeric_limits<float>::quiet_NaN();
13  btt = std::numeric_limits<float>::quiet_NaN();
14  btq = std::numeric_limits<float>::quiet_NaN();
15 }
16 
17 void BbcPmtHitV1::identify(std::ostream& out) const
18 {
19  out << "identify yourself: I am a BbcPmtHitV1 object" << std::endl;
20  out << "Pmt: " << bpmt << ", Q: " << bq << ", tt: "
21  << btt << ", btq: " << btq << std::endl;
22 }