#include "G4CellScoreValues.hh"Go to the source code of this file.
Data Structures | |
| class | G4CellScoreComposer |
Defines | |
| #define | G4CellScoreComposer_hh G4CellScoreComposer_hh |
Functions | |
| std::ostream & | operator<< (std::ostream &out, const G4CellScoreComposer &ps) |
| #define G4CellScoreComposer_hh G4CellScoreComposer_hh |
Definition at line 45 of file G4CellScoreComposer.hh.
| std::ostream& operator<< | ( | std::ostream & | out, | |
| const G4CellScoreComposer & | ps | |||
| ) |
Definition at line 102 of file G4CellScoreComposer.cc.
00103 { 00104 G4CellScoreValues scores = ps.GetStandardCellScoreValues(); 00105 out << "Tracks entering: " << scores.fSumTracksEntering << G4endl; 00106 out << "Population: " << scores.fSumPopulation << G4endl; 00107 out << "Collisions: " << scores.fSumCollisions << G4endl; 00108 out << "Collisions*Wgt: " << scores.fSumCollisionsWeight << G4endl; 00109 out << "NumWGTedEnergy: " << scores.fNumberWeightedEnergy << G4endl; 00110 out << "FluxWGTedEnergy: " << scores.fFluxWeightedEnergy << G4endl; 00111 out << "Aver.TrackWGT*I: " << scores.fAverageTrackWeight* 00112 scores.fImportance << G4endl; 00113 return out; 00114 }
1.4.7