| [817] | 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | //
|
|---|
| 27 | // $Id: G3MedTableEntry.cc,v 1.4 2006/06/29 18:13:06 gunter Exp $
|
|---|
| [1228] | 28 | // GEANT4 tag $Name: geant4-09-03 $
|
|---|
| [817] | 29 | //
|
|---|
| 30 | // by I.Hrivnacova, 27 Sep 99
|
|---|
| 31 |
|
|---|
| 32 | #include "G3MedTableEntry.hh"
|
|---|
| 33 |
|
|---|
| 34 | #include "G4Material.hh"
|
|---|
| 35 | #include "G4MagneticField.hh"
|
|---|
| 36 | #include "G4UserLimits.hh"
|
|---|
| 37 |
|
|---|
| 38 | G3MedTableEntry::G3MedTableEntry(G4int id, G4Material* material,
|
|---|
| 39 | G4MagneticField* field, G4UserLimits* limits, G4int isvol)
|
|---|
| 40 | : fID(id),
|
|---|
| 41 | fMaterial(material),
|
|---|
| 42 | fField(field),
|
|---|
| 43 | fLimits(limits),
|
|---|
| 44 | fISVOL(isvol)
|
|---|
| 45 | {}
|
|---|
| 46 |
|
|---|
| 47 | G3MedTableEntry::G3MedTableEntry(const G3MedTableEntry& right)
|
|---|
| 48 | : fID(right.GetID()),
|
|---|
| 49 | fMaterial(right.GetMaterial()),
|
|---|
| 50 | fField(right.GetField()),
|
|---|
| 51 | fLimits(right.GetLimits()),
|
|---|
| 52 | fISVOL(right.GetISVOL())
|
|---|
| 53 | {}
|
|---|
| 54 |
|
|---|
| 55 | G3MedTableEntry::~G3MedTableEntry()
|
|---|
| 56 | {}
|
|---|
| 57 |
|
|---|
| 58 | const G3MedTableEntry&
|
|---|
| 59 | G3MedTableEntry::operator=(const G3MedTableEntry& right)
|
|---|
| 60 | {
|
|---|
| 61 | fID = right.GetID();
|
|---|
| 62 | fMaterial = right.GetMaterial();
|
|---|
| 63 | fField = right.GetField();
|
|---|
| 64 | fLimits = right.GetLimits();
|
|---|
| 65 | fISVOL = right.GetISVOL();
|
|---|
| 66 | return *this;
|
|---|
| 67 | }
|
|---|
| 68 |
|
|---|
| 69 | G4int G3MedTableEntry::operator==(const G3MedTableEntry& right) const
|
|---|
| 70 | {
|
|---|
| 71 | if (fID == right.GetID())
|
|---|
| 72 | return 1;
|
|---|
| 73 | else
|
|---|
| 74 | return 0;
|
|---|
| 75 | }
|
|---|
| 76 |
|
|---|
| 77 | G4int G3MedTableEntry::operator!=(const G3MedTableEntry& right) const
|
|---|
| 78 | {
|
|---|
| 79 | if (*this == right)
|
|---|
| 80 | return 0;
|
|---|
| 81 | else
|
|---|
| 82 | return 1;
|
|---|
| 83 | }
|
|---|
| 84 |
|
|---|