| 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: G4DataVector.hh,v 1.15 2007/11/13 17:35:06 gcosmo Exp $
|
|---|
| 28 | // GEANT4 tag $Name: HEAD $
|
|---|
| 29 | //
|
|---|
| 30 | //
|
|---|
| 31 | // ------------------------------------------------------------
|
|---|
| 32 | // GEANT 4 class header file
|
|---|
| 33 | // ------------------------------------------------------------
|
|---|
| 34 | //
|
|---|
| 35 | // Class Description:
|
|---|
| 36 | //
|
|---|
| 37 | // Utility class providing similar behaviour of vector<G4double>.
|
|---|
| 38 | // It includes additional methods for compatibility with Rogue Wave
|
|---|
| 39 | // collection.
|
|---|
| 40 | //
|
|---|
| 41 |
|
|---|
| 42 | #ifndef G4DataVector_h
|
|---|
| 43 | #define G4DataVector_h 1
|
|---|
| 44 |
|
|---|
| 45 | #include "globals.hh"
|
|---|
| 46 | #include <vector>
|
|---|
| 47 | #include "G4ios.hh"
|
|---|
| 48 | #include <iostream>
|
|---|
| 49 | #include <fstream>
|
|---|
| 50 |
|
|---|
| 51 | class G4DataVector : public std::vector<G4double>
|
|---|
| 52 | {
|
|---|
| 53 |
|
|---|
| 54 | public: // with description
|
|---|
| 55 |
|
|---|
| 56 | G4DataVector();
|
|---|
| 57 | // Default constructor.
|
|---|
| 58 |
|
|---|
| 59 | explicit G4DataVector(size_t cap);
|
|---|
| 60 | // Constructor given a 'capacity' defining the initial number of elements.
|
|---|
| 61 |
|
|---|
| 62 | G4DataVector(size_t cap, G4double value);
|
|---|
| 63 | // Constructor given a 'capacity' defining the initial number of elements
|
|---|
| 64 | // and initialising them to 'value'.
|
|---|
| 65 |
|
|---|
| 66 | virtual ~G4DataVector();
|
|---|
| 67 | // Empty destructor
|
|---|
| 68 |
|
|---|
| 69 | inline void insertAt(size_t, const G4double&);
|
|---|
| 70 | // Insert an element at given position
|
|---|
| 71 |
|
|---|
| 72 | inline size_t index(const G4double&);
|
|---|
| 73 | // Returns back index of the element same as given value
|
|---|
| 74 |
|
|---|
| 75 | inline G4bool contains(const G4double&) const;
|
|---|
| 76 | // Returns 'true' if it contains the element same as given value
|
|---|
| 77 |
|
|---|
| 78 | inline G4bool remove(const G4double&);
|
|---|
| 79 | // Removes the first element same as given value
|
|---|
| 80 |
|
|---|
| 81 | inline size_t removeAll(const G4double&);
|
|---|
| 82 | // Remove all elements same as given value
|
|---|
| 83 |
|
|---|
| 84 | enum {T_G4DataVector = 100};
|
|---|
| 85 |
|
|---|
| 86 | G4bool Store(std::ofstream& fOut, G4bool ascii=false);
|
|---|
| 87 | G4bool Retrieve(std::ifstream& fIn, G4bool ascii=false);
|
|---|
| 88 | // To store/retrieve persistent data to/from file streams.
|
|---|
| 89 |
|
|---|
| 90 | friend std::ostream& operator<<(std::ostream&, const G4DataVector&);
|
|---|
| 91 | };
|
|---|
| 92 |
|
|---|
| 93 | #include "G4DataVector.icc"
|
|---|
| 94 |
|
|---|
| 95 | #endif
|
|---|