#include <iostream>
#include "globals.hh"
#include "Randomize.hh"
#include "G4QException.hh"
Go to the source code of this file.
Data Structures | |
class | G4QContent |
Defines | |
#define | G4QContent_h 1 |
Functions | |
std::ostream & | operator<< (std::ostream &lhs, G4QContent &rhs) |
std::ostream & | operator<< (std::ostream &lhs, const G4QContent &rhs) |
G4QContent | operator+ (const G4QContent &lhs, const G4QContent &rhs) |
G4QContent | operator- (const G4QContent &lhs, const G4QContent &rhs) |
G4QContent | operator * (const G4QContent &lhs, const G4int &rhs) |
G4QContent | operator * (const G4int &lhs, const G4QContent &rhs) |
#define G4QContent_h 1 |
Definition at line 45 of file G4QContent.hh.
G4QContent operator * | ( | const G4int & | lhs, | |
const G4QContent & | rhs | |||
) |
Definition at line 531 of file G4QContent.cc.
00532 { 00533 G4QContent s_value = rhs; 00534 return s_value *= lhs; 00535 }
G4QContent operator * | ( | const G4QContent & | lhs, | |
const G4int & | rhs | |||
) |
Definition at line 524 of file G4QContent.cc.
00525 { 00526 G4QContent s_value = lhs; 00527 return s_value *= rhs; 00528 }
G4QContent operator+ | ( | const G4QContent & | lhs, | |
const G4QContent & | rhs | |||
) |
Definition at line 510 of file G4QContent.cc.
00511 { 00512 G4QContent s_value = lhs; 00513 return s_value += rhs; 00514 }
G4QContent operator- | ( | const G4QContent & | lhs, | |
const G4QContent & | rhs | |||
) |
Definition at line 517 of file G4QContent.cc.
00518 { 00519 G4QContent s_value = lhs; 00520 return s_value -= rhs; 00521 }
std::ostream& operator<< | ( | std::ostream & | lhs, | |
const G4QContent & | rhs | |||
) |
std::ostream& operator<< | ( | std::ostream & | lhs, | |
G4QContent & | rhs | |||
) |