Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Macros | Typedefs | Functions
G4GeometryCellImportance.hh File Reference
#include <map>
#include "globals.hh"
#include "G4GeometryCell.hh"
#include "G4GeometryCellComp.hh"

Go to the source code of this file.

Macros

#define G4GeometryCellImportance_hh   G4GeometryCellImportance_hh
 

Typedefs

typedef std::map
< G4GeometryCell, G4double,
G4GeometryCellComp
G4GeometryCellImportance
 

Functions

std::ostream & operator<< (std::ostream &out, const G4GeometryCellImportance &gCelli)
 

Macro Definition Documentation

#define G4GeometryCellImportance_hh   G4GeometryCellImportance_hh

Definition at line 40 of file G4GeometryCellImportance.hh.

Typedef Documentation

Definition at line 47 of file G4GeometryCellImportance.hh.

Function Documentation

std::ostream& operator<< ( std::ostream &  out,
const G4GeometryCellImportance gCelli 
)

Definition at line 39 of file G4GeometryCellImportance.cc.

40 {
41  for (G4GeometryCellImportance::const_iterator it = gCelli.begin();
42  it != gCelli.end(); ++it) {
43  out << (*it).first << ", importance = ";
44  out << (*it).second << "\n";
45  }
46  return out;
47 }