File indexing completed on 2024-04-06 12:30:22
0001 #ifndef SimG4Core_DDG4SensitiveConverter_h
0002 #define SimG4Core_DDG4SensitiveConverter_h
0003
0004 #include "SimG4Core/Geometry/interface/DDG4DispContainer.h"
0005
0006 #include <iostream>
0007 #include <string>
0008 #include <vector>
0009
0010 class SensitiveDetectorCatalog;
0011 class DDLogicalPart;
0012
0013 class DDG4SensitiveConverter {
0014 public:
0015 DDG4SensitiveConverter();
0016 virtual ~DDG4SensitiveConverter();
0017 void upDate(const DDG4DispContainer &ddg4s, SensitiveDetectorCatalog &);
0018
0019 private:
0020 std::string getString(const std::string &, const DDLogicalPart *);
0021 };
0022
0023 #endif