Class Reference for E1039 Core & Analysis Software
PHG4Cellv2.h
Go to the documentation of this file.
1 #ifndef PHG4Cellv2_h__
2 #define PHG4Cellv2_h__
3 
4 #include "PHG4Cell.h"
5 #include "PHG4CellDefs.h"
6 #ifdef __CINT__
7 #include <stdint.h>
8 #else
9 #include <cstdint>
10 #endif
11 #include <iostream>
12 #include <map>
13 
15 class PHG4Cellv2 : public PHG4Cell
16 {
17  public:
18  PHG4Cellv2();
19  explicit PHG4Cellv2(const PHG4CellDefs::keytype g4cellid);
20  virtual ~PHG4Cellv2();
21 
22  virtual void identify(std::ostream& os = std::cout) const;
23  virtual void Reset();
24 
25  void set_cellid(const PHG4CellDefs::keytype i) { cellid = i; }
27  bool has_binning(const PHG4CellDefs::CellBinning binning) const;
28  short int get_detid() const;
29 
30  void add_edep(const PHG4HitDefs::keytype g4hitid, const float edep);
31 
33  {
34  return std::make_pair(hitedeps.begin(), hitedeps.end());
35  }
36 
37  void add_edep(const float f) { _edep += f; }
38  double get_edep() const { return _edep; }
39  // tpctod* get_train_of_digits() {return &trainOfDigits;}
40 
41  void print() const;
42 
43  protected:
46 
47  float _edep;
48  // tpctod trainOfDigits;
49 
50  ClassDef(PHG4Cellv2, 1)
51 };
52 
53 #endif
std::pair< EdepConstIterator, EdepConstIterator > EdepConstRange
Definition: PHG4Cell.h:19
std::map< PHG4HitDefs::keytype, float > EdepMap
Definition: PHG4Cell.h:15
specialized cells for TPC operations
Definition: PHG4Cellv2.h:16
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4Cellv2.cc:54
void set_cellid(const PHG4CellDefs::keytype i)
Definition: PHG4Cellv2.h:25
void add_edep(const PHG4HitDefs::keytype g4hitid, const float edep)
Definition: PHG4Cellv2.cc:26
virtual ~PHG4Cellv2()
Definition: PHG4Cellv2.cc:20
void add_edep(const float f)
Definition: PHG4Cellv2.h:37
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
float _edep
Definition: PHG4Cellv2.h:47
PHG4CellDefs::keytype get_cellid() const
Definition: PHG4Cellv2.h:26
short int get_detid() const
Definition: PHG4Cellv2.cc:38
double get_edep() const
Definition: PHG4Cellv2.h:38
virtual void Reset()
Definition: PHG4Cellv2.cc:48
EdepConstRange get_g4hits()
Definition: PHG4Cellv2.h:32
unsigned long long keytype
Definition: PHG4CellDefs.h:7
unsigned int keytype
Definition: PHG4HitDefs.h:8