CMS 3D CMS Logo

CastorNumberingScheme.h
Go to the documentation of this file.
1 #ifndef Forward_CastorNumberingScheme_h
2 #define Forward_CastorNumberingScheme_h
3 // -*- C++ -*-
4 //
5 // Package: Forward
6 // Class : CastorNumberingScheme
7 //
16 //
17 // Original Author:
18 // Created: Tue May 16 10:14:34 CEST 2006
19 // $Id: CastorNumberingScheme.h,v 1.5 2009/09/02 20:41:25 sunanda Exp $
20 //
21 
22 // system include files
23 
24 // user include files
25 
26 #include "G4Step.hh"
27 #include "G4LogicalVolume.hh"
28 #include <cstdint>
29 
31 public:
33  virtual ~CastorNumberingScheme();
34 
35  virtual uint32_t getUnitID(const G4Step* aStep) const;
36 
46  // static uint32_t packIndex(int det, int z, int sector, int zmodule);
47  // static void unpackIndex(const uint32_t& idx, int& det, int& z, int& sector, int& zmodule);
48 
49  static uint32_t packIndex(int z, int sector, int zmodule);
50  static void unpackIndex(const uint32_t& idx, int& z, int& sector, int& zmodule);
51 
52 private:
53  typedef G4LogicalVolume* lvp;
54 
55  // Utilities to get detector levels during a step
56  void detectorLevel(const G4Step*, int&, int*, lvp*) const;
57 
60 };
61 
62 #endif
virtual uint32_t getUnitID(const G4Step *aStep) const
void detectorLevel(const G4Step *, int &, int *, lvp *) const
static void unpackIndex(const uint32_t &idx, int &z, int &sector, int &zmodule)
static uint32_t packIndex(int z, int sector, int zmodule)