Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4QParentCluster.hh File Reference
#include <iostream>
#include "globals.hh"
#include "G4QContent.hh"

Go to the source code of this file.

Classes

class  G4QParentCluster
 

Functions

std::ostream & operator<< (std::ostream &lhs, G4QParentCluster &rhs)
 
std::ostream & operator<< (std::ostream &lhs, const G4QParentCluster &rhs)
 

Function Documentation

◆ operator<<() [1/2]

std::ostream & operator<< ( std::ostream &  lhs,
const G4QParentCluster rhs 
)

Definition at line 108 of file G4QParentCluster.cc.

109{
110 lhs << "[ParClPDG=" << rhs.GetPDGCode() << ", probab=" << rhs.GetProbability() << "]";
111 return lhs;
112}
G4double GetProbability() const
G4int GetPDGCode() const

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream &  lhs,
G4QParentCluster rhs 
)

Definition at line 101 of file G4QParentCluster.cc.

102{
103 lhs << "[ParClPDG=" << rhs.GetPDGCode() << ", probab=" << rhs.GetProbability() << "]";
104 return lhs;
105}