Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-07 03:06:28

0001 #ifndef DataFormats_Phase2TrackerDigi_Phase2ITDigiHit_H
0002 #define DataFormats_Phase2TrackerDigi_Phase2ITDigiHit_H
0003 
0004 class Phase2ITDigiHit {
0005 private:
0006   int row_;  // Hit position row
0007   int col_;  // Hit position column
0008   int adc_;  // Hit position adc
0009 
0010 public:
0011   Phase2ITDigiHit(int row_num, int col_num, int adc_num);
0012 
0013   void set_row(int row) { row_ = row; }
0014   void set_col(int col) { col_ = col; }
0015 
0016   int row() const { return row_; }
0017   int col() const { return col_; }
0018   int adc() const { return adc_; }
0019 };
0020 
0021 #endif  // DataFormats_Phase2TrackerDigi_Phase2ITDigiHit_H