Skip to content

Commit fe1364f

Browse files
committed
Don't print out entire material definition.
1 parent 2667c5a commit fe1364f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/remollSteppingAction.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ void remollSteppingAction::InitializeMaterials()
2626

2727
// Find kryptonite materials in material tables
2828
G4MaterialTable* table = G4Material::GetMaterialTable();
29-
G4cout << "Loading kryptonite materials table." << G4endl;
29+
G4cout << "Loading kryptonite materials table..." << G4endl;
3030
for (G4MaterialTable::const_iterator
3131
it = table->begin();
3232
it != table->end(); it++) {
3333
if (materials.find((*it)->GetName()) != materials.end()) {
3434
fKryptoniteMaterials.insert(*it);
35-
G4cout << "Treating " << (*it) << " (" << (*it)->GetName() << ") as kryptonite." << G4endl;
35+
G4cout << "Treating " << (*it)->GetName() << " as kryptonite." << G4endl;
3636
}
3737
}
3838
}

0 commit comments

Comments
 (0)