129 lines
3.8 KiB
C++
129 lines
3.8 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
// $Id: Histo.hh,v 1.5 2007/05/24 13:17:41 vnivanch Exp $
|
|
// GEANT4 tag $Name: geant4-09-01 $
|
|
|
|
#ifndef Histo_h
|
|
#define Histo_h 1
|
|
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// ClassName: Histo
|
|
//
|
|
// Description: Utility class to hold and manipulate histograms/nTuples
|
|
//
|
|
// Author: V.Ivanchenko 30/10/03
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
//
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#include "globals.hh"
|
|
#include <vector>
|
|
#include "G4DynamicParticle.hh"
|
|
#include "G4VPhysicalVolume.hh"
|
|
#include "G4DataVector.hh"
|
|
#include "G4Track.hh"
|
|
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
class HistoMessenger;
|
|
|
|
namespace AIDA {
|
|
class ITree;
|
|
class ITuple;
|
|
class IHistogram1D;
|
|
class IAnalysisFactory;
|
|
}
|
|
|
|
class Histo
|
|
{
|
|
|
|
public:
|
|
Histo();
|
|
|
|
~Histo();
|
|
|
|
void book();
|
|
// Book predefined histogramms
|
|
|
|
void save();
|
|
// Save histogramms to file
|
|
|
|
void add1D(const G4String&, const G4String&, G4int nb=100, G4double x1=0.,
|
|
G4double x2=1., G4double u=1.);
|
|
// In this method histogramms are predefined
|
|
|
|
void setHisto1D(G4int, G4int, G4double, G4double, G4double);
|
|
// It change bins and boundaries
|
|
|
|
void fill(G4int, G4double, G4double);
|
|
// Histogramms are filled
|
|
|
|
void scale(G4int, G4double);
|
|
|
|
void addTuple(const G4String&, const G4String&, const G4String&);
|
|
// In this method nTuple is booked
|
|
|
|
void fillTuple(const G4String&, G4double);
|
|
// Fill nTuple parameter
|
|
|
|
void addRow();
|
|
// Save tuple event
|
|
|
|
void setFileName(const G4String&);
|
|
|
|
void setFileType(const G4String&);
|
|
|
|
private:
|
|
|
|
G4String histName;
|
|
G4String histType;
|
|
G4String tupleName;
|
|
G4String tupleId;
|
|
G4String tupleList;
|
|
G4int nHisto;
|
|
G4int verbose;
|
|
G4int defaultAct;
|
|
|
|
std::vector<AIDA::IHistogram1D*> histo;
|
|
AIDA::IAnalysisFactory* af;
|
|
AIDA::ITuple* ntup;
|
|
AIDA::ITree* tree;
|
|
HistoMessenger* messenger;
|
|
std::vector<G4int> active;
|
|
std::vector<G4int> bins;
|
|
std::vector<G4double> xmin;
|
|
std::vector<G4double> xmax;
|
|
std::vector<G4double> unit;
|
|
std::vector<G4String> ids;
|
|
std::vector<G4String> titles;
|
|
};
|
|
|
|
#endif
|