62 lines
2.4 KiB
C++
62 lines
2.4 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: G4Fcn.hh 72292 2013-07-15 12:01:43Z ihrivnac $
|
|
|
|
// Author: Ivana Hrivnacova, 04/07/2012 (ivana@ipno.in2p3.fr)
|
|
|
|
#ifndef G4AnalysisUtilities_h
|
|
#define G4AnalysisUtilities_h 1
|
|
|
|
#include "globals.hh"
|
|
|
|
#include <vector>
|
|
|
|
namespace G4Analysis {
|
|
|
|
// Invalid object Id
|
|
//
|
|
const G4int kInvalidId = -1;
|
|
|
|
// Utility functions for checking input parameters
|
|
G4bool CheckNbins(G4int nbins);
|
|
G4bool CheckMinMax(G4double xmin, G4double xmax, const G4String& binSchemeName);
|
|
G4bool CheckEdges(const std::vector<G4double>& edges);
|
|
|
|
// Get unit value with added handling of b"none"
|
|
G4double GetUnitValue(const G4String& unit);
|
|
|
|
// Add unit & fcn to the title
|
|
void UpdateTitle(G4String& title,
|
|
const G4String& unitName, const G4String& fcnName);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|