Geant4  10.02
PDBmolecule.cc
Go to the documentation of this file.
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 // This example is provided by the Geant4-DNA collaboration
27 // Any report or published results obtained using the Geant4-DNA software
28 // shall cite the following Geant4-DNA collaboration publication:
29 // Med. Phys. 37 (2010) 4692-4708
30 // Delage et al. PDB4DNA: implementation of DNA geometry from the Protein Data
31 // Bank (PDB) description for Geant4-DNA Monte-Carlo
32 // simulations (submitted to Comput. Phys. Commun.)
33 // The Geant4-DNA web site is available at http://geant4-dna.org
34 //
35 // $Id$
36 //
39 
40 #include "PDBmolecule.hh"
41 
42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43 
45 fMolName(""),fMolNum(0),fMinGlobZ(0),fMaxGlobZ(0),
46 fMinGlobX(0),fMaxGlobX(0),fMinGlobY(0),fMaxGlobY(0),
47 fCenterX(0),fCenterY(0),fCenterZ(0),fDistCenterMax(0),fNbResidue(0),
48 fpNext(0),fpFirst(0)
49 {
50 }
51 
52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
53 
54 Molecule::Molecule(string mN,int mNum)
55 {
56  fMolName=mN; //Molecule name
57  fMolNum=mNum; //Molecule number
58  fMinGlobZ=0;
59  fMaxGlobZ=0;
60  fMinGlobX=0;
61  fMaxGlobX=0;
62  fMinGlobY=0;
63  fMaxGlobY=0;
64  fCenterX=0;
65  fCenterY=0;
66  fCenterZ=0;
68  fNbResidue=0;
69  fpNext=0;
70  fpFirst=0;
71 }
72 
73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
74 
76 {
77  return fpNext;
78 }
79 
80 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
81 
83 {
84  return fpFirst;
85 }
86 
87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
88 
90 {
91  return fMolNum;
92 }
93 
94 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
95 
96 void Molecule::SetNext(Molecule *moleculeNext)
97 {
98  fpNext=moleculeNext;
99 }
100 
101 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
102 
104 {
105  fpFirst=resFirst;
106 }
107 
Residue * fpFirst
Header of the first Residue (usage before vector)
Definition: PDBmolecule.hh:103
int fCenterZ
"Z center" of this Molecule (for rotation...)
Definition: PDBmolecule.hh:97
Molecule Class.
Definition: PDBmolecule.hh:62
double fMaxGlobX
Definition: PDBmolecule.hh:91
void SetNext(Molecule *)
Set the next Molecule.
Definition: PDBmolecule.cc:96
Residue * GetFirst()
Get the first Residue.
Definition: PDBmolecule.cc:82
Residue Class.
Definition: PDBresidue.hh:58
void SetFirst(Residue *)
Set the first Residue.
Definition: PDBmolecule.cc:103
int fCenterX
"X center" of this Molecule (for rotation...)
Definition: PDBmolecule.hh:95
string fMolName
Molecule name.
Definition: PDBmolecule.hh:85
int fDistCenterMax
dist from center to most away most of the molecule
Definition: PDBmolecule.hh:98
int fCenterY
"Y center" of this Molecule (for rotation...)
Definition: PDBmolecule.hh:96
double fMinGlobY
Definition: PDBmolecule.hh:92
double fMaxGlobY
Definition: PDBmolecule.hh:93
double fMinGlobX
Definition: PDBmolecule.hh:90
Molecule * GetNext()
information about molecule (not implemented)
Definition: PDBmolecule.cc:75
Definition of the PDBmolecule class.
int fNbResidue
Number of residue inside the molecule.
Definition: PDBmolecule.hh:99
Molecule()
First constructor.
Definition: PDBmolecule.cc:44
double fMinGlobZ
Definition: PDBmolecule.hh:88
int GetID()
Get number Molecule.
Definition: PDBmolecule.cc:89
double fMaxGlobZ
Definition: PDBmolecule.hh:89
Molecule * fpNext
Header of the next Molecule (usage before vector)
Definition: PDBmolecule.hh:102
int fMolNum
Molecule number.
Definition: PDBmolecule.hh:86