#include <iostream>#include "globals.hh"#include "G4QContent.hh"Go to the source code of this file.
Data Structures | |
| class | G4QParentCluster |
Defines | |
| #define | G4QParentCluster_h 1 |
Functions | |
| std::ostream & | operator<< (std::ostream &lhs, G4QParentCluster &rhs) |
| std::ostream & | operator<< (std::ostream &lhs, const G4QParentCluster &rhs) |
| #define G4QParentCluster_h 1 |
Definition at line 41 of file G4QParentCluster.hh.
| std::ostream& operator<< | ( | std::ostream & | lhs, | |
| const G4QParentCluster & | rhs | |||
| ) |
Definition at line 108 of file G4QParentCluster.cc.
00109 { 00110 lhs << "[ParClPDG=" << rhs.GetPDGCode() << ", probab=" << rhs.GetProbability() << "]"; 00111 return lhs; 00112 }
| std::ostream& operator<< | ( | std::ostream & | lhs, | |
| G4QParentCluster & | rhs | |||
| ) |
Definition at line 101 of file G4QParentCluster.cc.
00102 { 00103 lhs << "[ParClPDG=" << rhs.GetPDGCode() << ", probab=" << rhs.GetProbability() << "]"; 00104 return lhs; 00105 }
1.4.7