Class Reference for E1039 Core & Analysis Software
PHG4Cellv2.cc
Go to the documentation of this file.
1 #include "PHG4Cellv2.h"
2 
3 #include <phool/phool.h>
4 
5 #include <iostream>
6 
7 using namespace std;
8 
10  : PHG4Cellv2(~0x0)
11 {
12 }
13 
15  : cellid(g4cellid)
16  , _edep(0)
17 {
18 }
19 
21 {
22  // hitedeps.clear();
23  return;
24 }
25 
26 void PHG4Cellv2::add_edep(const PHG4HitDefs::keytype g4hitid, const float edep)
27 {
28  hitedeps[g4hitid] = edep;
29  return;
30 }
31 
33 {
34  return PHG4CellDefs::has_binning(cellid, binning);
35 }
36 
37 short int
39 {
41 }
42 
43 void PHG4Cellv2::print() const
44 {
45  identify(cout);
46 }
47 
49 {
50  hitedeps.clear();
51  return;
52 }
53 
54 void PHG4Cellv2::identify(std::ostream& os) const
55 {
56  os << "New PHG4Cellv2 0x" << hex << cellid << dec << endl;
57 
58  os << "Associated to " << hitedeps.size() << " hits" << endl;
59  for (const auto pair : hitedeps)
60  {
61  os << "\t PHG4hit " << pair.first << " -> " << pair.second << " GeV" << endl;
62  }
63 
64  // os <<"Contains to "<<trainOfDigits.size()<<" TPC digitization chain"<<endl;
65 }
specialized cells for TPC operations
Definition: PHG4Cellv2.h:16
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4Cellv2.cc:54
void add_edep(const PHG4HitDefs::keytype g4hitid, const float edep)
Definition: PHG4Cellv2.cc:26
virtual ~PHG4Cellv2()
Definition: PHG4Cellv2.cc:20
bool has_binning(const PHG4CellDefs::CellBinning binning) const
Definition: PHG4Cellv2.cc:32
EdepMap hitedeps
Definition: PHG4Cellv2.h:45
PHG4CellDefs::keytype cellid
Definition: PHG4Cellv2.h:44
void print() const
Definition: PHG4Cellv2.cc:43
short int get_detid() const
Definition: PHG4Cellv2.cc:38
virtual void Reset()
Definition: PHG4Cellv2.cc:48
unsigned long long keytype
Definition: PHG4CellDefs.h:7
short int get_detid(const PHG4CellDefs::keytype key)
bool has_binning(PHG4CellDefs::keytype key, PHG4CellDefs::CellBinning binning)
unsigned int keytype
Definition: PHG4HitDefs.h:8