Import Geant4 10.5.1 source tree
This commit is contained in:
@@ -16,6 +16,9 @@ committal in the CVS repository !
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
Jan 31, 2019, I.Hrivnacova (readout-V10-04-01)
|
||||
- Merged GitHub PR #4: all Boolean operators now return G4bool.
|
||||
|
||||
Nov 9, 2018, G.Cosmo (readout-V10-04-00)
|
||||
- G4DigiManager: fixed printout typos.
|
||||
|
||||
|
||||
@@ -53,8 +53,8 @@ class G4VDigitizerModule
|
||||
// the detector module must be unique.
|
||||
public:
|
||||
virtual ~G4VDigitizerModule();
|
||||
int operator==(const G4VDigitizerModule &right) const;
|
||||
int operator!=(const G4VDigitizerModule &right) const;
|
||||
G4bool operator==(const G4VDigitizerModule &right) const;
|
||||
G4bool operator!=(const G4VDigitizerModule &right) const;
|
||||
|
||||
public: // with description
|
||||
virtual void Digitize() = 0;
|
||||
|
||||
@@ -40,10 +40,10 @@ G4VDigitizerModule::G4VDigitizerModule(G4String modName)
|
||||
G4VDigitizerModule::~G4VDigitizerModule()
|
||||
{;}
|
||||
|
||||
int G4VDigitizerModule::operator==(const G4VDigitizerModule &right) const
|
||||
G4bool G4VDigitizerModule::operator==(const G4VDigitizerModule &right) const
|
||||
{ return (moduleName==right.moduleName); }
|
||||
|
||||
int G4VDigitizerModule::operator!=(const G4VDigitizerModule &right) const
|
||||
G4bool G4VDigitizerModule::operator!=(const G4VDigitizerModule &right) const
|
||||
{ return (moduleName!=right.moduleName); }
|
||||
|
||||
void G4VDigitizerModule::StoreDigiCollection(G4VDigiCollection* aDC)
|
||||
|
||||
Reference in New Issue
Block a user