ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4CylinderCellv3.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4CylinderCellv3.h
1 // Tell emacs that this is a C++ source
2 // -*- C++ -*-.
3 #ifndef G4DETECTORS_PHG4CYLINDERCELLV3_H
4 #define G4DETECTORS_PHG4CYLINDERCELLV3_H
5 
6 #include "PHG4CylinderCellv1.h"
7 
8 #include <iostream>
9 
11 {
12  public:
13 
15  ~PHG4CylinderCellv3() override{}
16 
17 // from PHObject
18  void identify(std::ostream& os = std::cout) const override;
19 
20  void set_j_index(const int i) override {j_index = i;}
21  int get_j_index() const override {return j_index;}
22 
23  void set_k_index(const int i) override {k_index = i;}
24  int get_k_index() const override {return k_index;}
25 
26  void set_l_index(const int i) override {l_index = i;}
27  int get_l_index() const override {return l_index;}
28 
29  protected:
30 
31  int j_index;
32  int k_index;
33  int l_index;
34 
35  ClassDefOverride(PHG4CylinderCellv3,1)
36 };
37 
38 #endif