Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // G4ProcessAttribute class implementation << 27 // 23 // 28 // Author: H.Kurashige, 2 December 1997 << 24 // $Id: G4ProcessAttribute.cc,v 1.4 2001/07/11 10:08:19 gunter Exp $ 29 // ------------------------------------------- << 25 // GEANT4 tag $Name: geant4-05-00 $ >> 26 // >> 27 // >> 28 // ------------------------------------------------------------ >> 29 // GEANT 4 class header file >> 30 // >> 31 // History: first implementation, based on object model of >> 32 // 2nd December 1997, H.Kurashige >> 33 // ---------------- G4ProcessAttribute ----------------- >> 34 // History: >> 35 // adds copy constructor 27 June 1998 H.Kurashige >> 36 // ------------------------------------------------------------ 30 37 31 #include "G4ProcessAttribute.hh" 38 #include "G4ProcessAttribute.hh" 32 39 33 // ------------------------------------------- << 40 G4ProcessAttribute::G4ProcessAttribute(): 34 // Default constructor << 41 isActive(true) 35 // << 36 G4ProcessAttribute::G4ProcessAttribute() << 37 { 42 { 38 for (std::size_t idx=0; idx<G4ProcessManager << 43 pProcess = 0; 39 { << 44 idxProcessList = -1; 40 idxProcVector[idx] = -1; << 41 ordProcVector[idx] = -1; << 42 } << 43 } << 44 << 45 // ------------------------------------------- << 46 G4ProcessAttribute::G4ProcessAttribute(const G << 47 : pProcess((G4VProcess*)aProcess) << 48 { << 49 for(std::size_t idx=0; idx<G4ProcessManager: << 50 { << 51 idxProcVector[idx] = -1; << 52 ordProcVector[idx] = 0; << 53 } << 54 } 45 } 55 46 56 // ------------------------------------------- << 47 // copy constructor ////////////////////////// 57 // Copy constructor << 48 G4ProcessAttribute::G4ProcessAttribute(const G4ProcessAttribute &right) 58 // << 49 :isActive(true) 59 G4ProcessAttribute::G4ProcessAttribute(const G << 60 : pProcess(right.pProcess), << 61 isActive(right.isActive), << 62 idxProcessList(right.idxProcessList) << 63 { 50 { 64 // copy all contents in idxProcVector[] and << 51 pProcess = right.pProcess; 65 // << 52 idxProcessList = right.idxProcessList; 66 for (std::size_t idx=0; idx<G4ProcessManager << 53 // copy all contents in idxProcVector[] and ordProcVector[] 67 { << 54 // deep copy >> 55 for (G4int idx=0; idx<G4ProcessManager::SizeOfProcVectorArray; idx++){ 68 idxProcVector[idx] = right.idxProcVector[i 56 idxProcVector[idx] = right.idxProcVector[idx]; 69 ordProcVector[idx] = right.ordProcVector[i 57 ordProcVector[idx] = right.ordProcVector[idx]; 70 } 58 } 71 } 59 } 72 60 73 // ------------------------------------------- << 61 G4ProcessAttribute::~G4ProcessAttribute() 74 // Destructor << 75 // << 76 G4ProcessAttribute::~G4ProcessAttribute() << 77 { 62 { 78 // do nothing 63 // do nothing 79 } 64 } 80 65 81 // ------------------------------------------- << 66 G4ProcessAttribute & G4ProcessAttribute::operator=(G4ProcessAttribute &right) 82 // Assignment operator << 83 // << 84 G4ProcessAttribute& << 85 G4ProcessAttribute::operator=(const G4ProcessA << 86 { 67 { 87 if (this != &right) << 68 if (this != &right) { 88 { << 89 pProcess = right.pProcess; 69 pProcess = right.pProcess; 90 idxProcessList = right.idxProcessList; 70 idxProcessList = right.idxProcessList; 91 isActive = right.isActive; 71 isActive = right.isActive; 92 << 72 // copy all contents in idxProcVector[] and ordProcVector[] 93 // copy all contents in idxProcVector[] an << 73 // deep copy 94 // << 74 for (G4int idx=0; idx<G4ProcessManager::SizeOfProcVectorArray; idx++){ 95 for (std::size_t idx=0; idx<G4ProcessManag << 96 { << 97 idxProcVector[idx] = right.idxProcVector 75 idxProcVector[idx] = right.idxProcVector[idx]; 98 ordProcVector[idx] = right.ordProcVector 76 ordProcVector[idx] = right.ordProcVector[idx]; 99 } 77 } 100 } 78 } 101 return *this; 79 return *this; 102 } 80 } >> 81 >> 82 >> 83 103 84