source: trunk/source/processes/hadronic/models/parton_string/management/include/G4StringModel.hh@ 1358

Last change on this file since 1358 was 1340, checked in by garnier, 15 years ago

update ti head

File size: 3.4 KB
Line 
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: G4StringModel.hh,v 1.3 2006/06/29 20:55:23 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03-ref-09 $
29//
30#ifndef G4StringModel_h
31#define G4StringModel_h 1
32
33#include "G4VHighEnergyGenerator.hh"
34#include "G4EventGenerator.hh"
35#include "G4KineticTrackVector.hh"
36class G4V3DNucleus;
37class G4VStringFragmentation;
38
39
40class G4StringModel : public G4VHighEnergyGenerator
41
42{
43 public:
44 G4StringModel();
45 ~G4StringModel();
46
47 private:
48 G4StringModel(const G4StringModel &right);
49 const G4StringModel & operator=(const G4StringModel &right);
50 int operator==(const G4StringModel &right) const;
51 int operator!=(const G4StringModel &right) const;
52
53 public:
54 void Set3DNucleus(G4V3DNucleus *const value);
55 void SetStringFragmentationModel(G4VStringFragmentation *const value);
56 void SetGenerator(G4EventGenerator *const value);
57
58 private:
59 const G4V3DNucleus * Get3DNucleus() const;
60 const G4VStringFragmentation * GetStringFragmentationModel() const;
61 const G4EventGenerator * GetGenerator() const;
62
63 private:
64 G4V3DNucleus *the3DNucleus;
65 G4VStringFragmentation *theStringFragmentationModel;
66 G4EventGenerator *theGenerator;
67
68};
69
70inline const G4V3DNucleus * G4StringModel::Get3DNucleus() const
71{
72 return the3DNucleus;
73}
74
75inline void G4StringModel::Set3DNucleus(G4V3DNucleus *const value)
76{
77 the3DNucleus = value;
78}
79
80inline const G4VStringFragmentation * G4StringModel::GetStringFragmentationModel() const
81{
82 return theStringFragmentationModel;
83}
84
85inline void G4StringModel::SetStringFragmentationModel(G4VStringFragmentation *const value)
86{
87 theStringFragmentationModel = value;
88}
89
90inline const G4EventGenerator * G4StringModel::GetGenerator() const
91{
92 return theGenerator;
93}
94
95inline void G4StringModel::SetGenerator(G4EventGenerator *const value)
96{
97 theGenerator = value;
98}
99
100#endif
Note: See TracBrowser for help on using the repository browser.