source: trunk/source/persistency/ascii/include/G4tgrParameterMgr.hh @ 1347

Last change on this file since 1347 was 1347, checked in by garnier, 13 years ago

geant4 tag 9.4

File size: 3.2 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: G4tgrParameterMgr.hh,v 1.3 2010/10/13 07:56:55 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-04-ref-00 $
29//
30//
31// class G4tgrParameterMgr
32//
33// Class description:
34//
35// Class to manage parameters. It is a singleton.
36
37// History:
38// - Created.                                 P.Arce, CIEMAT (November 2007)
39// -------------------------------------------------------------------------
40
41#ifndef G4tgrParameterMgr_h
42#define G4tgrParameterMgr_h
43
44#include "globals.hh"
45
46#include <map>
47#include <vector>
48
49typedef std::map< G4String, G4String > G4mapss;
50
51class G4tgrParameterMgr 
52{ 
53  public:   // with description
54
55    static G4tgrParameterMgr* GetInstance(); 
56      // Get the only instance
57
58    void AddParameterNumber( const std::vector<G4String>& wl,
59                                   G4bool mustBeNew = 0 );
60    void AddParameterString( const std::vector<G4String>& wl,
61                                   G4bool mustBeNew = 0 );
62      // Add to theParameterList
63
64    void CheckIfNewParameter( const std::vector<G4String>& wl,
65                                    G4bool mustBeNew  );
66      // Check if it is new and that there are 3 words
67
68    G4String FindParameter( const G4String& name, G4bool exists = true );
69     // Find a Parameter with name 'name'.
70
71    void DumpList();
72      // Dump list of parameters
73
74  private:
75
76    G4tgrParameterMgr();
77   ~G4tgrParameterMgr();
78
79  private:
80
81    G4mapss theParameterList;
82      // Map of Parameter's: G4String is the Parameter name,
83      // double is its value
84
85    static G4tgrParameterMgr* theInstance;
86};
87
88#endif
Note: See TracBrowser for help on using the repository browser.