@@ -32,14 +32,6 @@ namespace celeritas
3232{
3333namespace detail
3434{
35- // ---------------------------------------------------------------------------//
36- // DEPRECATED: remove in v0.5
37- enum class TableSelection
38- {
39- minimal, // !< Store only lambda, dedx, and range
40- all
41- };
42-
4335// ---------------------------------------------------------------------------//
4436/* !
4537 * Simplify the convoluted mechanism to store Geant4 process, model, and XS
@@ -54,7 +46,7 @@ enum class TableSelection
5446 *
5547 * \code
5648 * std::vector<ImportProcess> processes;
57- * GeantProcessImporter import(TableSelection::all, materials, elements);
49+ * GeantProcessImporter import(materials, elements);
5850 *
5951 * G4ParticleTable::G4PTblDicIterator& particle_iterator
6052 * = *(G4ParticleTable::GetParticleTable()->GetIterator());
@@ -82,8 +74,7 @@ class GeantProcessImporter
8274{
8375 public:
8476 // Construct with selected list of tables
85- GeantProcessImporter (TableSelection which_tables,
86- std::vector<ImportPhysMaterial> const & materials,
77+ GeantProcessImporter (std::vector<ImportPhysMaterial> const & materials,
8778 std::vector<ImportElement> const & elements);
8879
8980 // Import processes
0 commit comments