| 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 | // $Id: B01ScoreTable.hh,v 1.1 2007/06/05 18:20:09 ahoward Exp $
|
|---|
| 27 | // GEANT4 tag $Name: $
|
|---|
| 28 | //
|
|---|
| 29 | // ----------------------------------------------------------------------
|
|---|
| 30 | // Class B01ScoreTable
|
|---|
| 31 | //
|
|---|
| 32 | // Class description:
|
|---|
| 33 | //
|
|---|
| 34 | // This class creates a table from a given G4CellScoreStore
|
|---|
| 35 | // and prints it to a given output stream.
|
|---|
| 36 | //
|
|---|
| 37 |
|
|---|
| 38 | // Author: Michael Dressel (Michael.Dressel@cern.ch)
|
|---|
| 39 | // ----------------------------------------------------------------------
|
|---|
| 40 | //
|
|---|
| 41 |
|
|---|
| 42 | #ifndef B01ScoreTable_hh
|
|---|
| 43 | #define B01ScoreTable_hh B01ScoreTable_hh
|
|---|
| 44 |
|
|---|
| 45 | #include <iostream>
|
|---|
| 46 | #include <iomanip>
|
|---|
| 47 | #include <vector>
|
|---|
| 48 |
|
|---|
| 49 | #include "globals.hh"
|
|---|
| 50 | #include "G4CellScorerStore.hh"
|
|---|
| 51 | #include "G4CellScoreValues.hh"
|
|---|
| 52 | class G4VIStore;
|
|---|
| 53 |
|
|---|
| 54 |
|
|---|
| 55 | class B01ScoreTable
|
|---|
| 56 | {
|
|---|
| 57 | public: // with description
|
|---|
| 58 | explicit B01ScoreTable(const G4VIStore *aIStore = 0);
|
|---|
| 59 |
|
|---|
| 60 | ~B01ScoreTable();
|
|---|
| 61 |
|
|---|
| 62 | void Print(const G4MapGeometryCellCellScorer &cs,
|
|---|
| 63 | std::ostream *out = 0);
|
|---|
| 64 | // create the table and print it to the ouput stream.
|
|---|
| 65 |
|
|---|
| 66 | void PrintHeader(std::ostream *out);
|
|---|
| 67 | // print the table header, done by the above Print() function
|
|---|
| 68 |
|
|---|
| 69 | void PrintTable(const G4MapGeometryCellCellScorer &cs,
|
|---|
| 70 | std::ostream *out);
|
|---|
| 71 | // print the table contend, done by the above Print() function
|
|---|
| 72 |
|
|---|
| 73 | std::string FillString(const std::string &name,
|
|---|
| 74 | char c, G4int n, G4bool back = true);
|
|---|
| 75 | // create a string of length n, by filling up
|
|---|
| 76 | // name with the char c.
|
|---|
| 77 |
|
|---|
| 78 | private:
|
|---|
| 79 | B01ScoreTable(const B01ScoreTable &);
|
|---|
| 80 | B01ScoreTable &operator=(const B01ScoreTable &);
|
|---|
| 81 |
|
|---|
| 82 | G4String CreateName(const G4GeometryCell &gCell);
|
|---|
| 83 | void PrintLine(const G4String &name,
|
|---|
| 84 | const G4CellScoreValues &sc_scores,
|
|---|
| 85 | std::ostream *out);
|
|---|
| 86 | const G4VIStore *fIStore;
|
|---|
| 87 | G4int FieldName;
|
|---|
| 88 | G4int FieldValue;
|
|---|
| 89 | };
|
|---|
| 90 |
|
|---|
| 91 | #endif
|
|---|