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