Warning, file /DD4hep/DDCore/include/DDSegmentation/NoSegmentation.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019 #ifndef DDSEGMENTATION_NOSEGMENTATION_H
0020 #define DDSEGMENTATION_NOSEGMENTATION_H
0021
0022 #include <DDSegmentation/Segmentation.h>
0023
0024 namespace dd4hep {
0025 namespace DDSegmentation {
0026
0027
0028 class NoSegmentation: public Segmentation {
0029 public:
0030
0031 virtual ~NoSegmentation();
0032
0033 NoSegmentation(const std::string& cellEncoding = "");
0034 NoSegmentation(const BitFieldCoder* decoder);
0035
0036 virtual Vector3D position(const CellID& cellID) const;
0037 virtual CellID cellID(const Vector3D& localPosition, const Vector3D& globalPosition, const VolumeID& volumeID) const;
0038
0039 };
0040
0041
0042 }
0043 }
0044 #endif