Files
geant4/examples/advanced/Tiara/source/tiara/tiara.cc
T
2016-06-09 10:41:53 +02:00

90 lines
3.2 KiB
C++

//
// ********************************************************************
// * DISCLAIMER *
// * *
// * The following disclaimer summarizes all the specific disclaimers *
// * of contributors to this software. The specific disclaimers,which *
// * govern, are listed with their locations in: *
// * http://cern.ch/geant4/license *
// * *
// * 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. *
// * *
// * This code implementation is the intellectual property of the *
// * GEANT4 collaboration. *
// * By copying, distributing or modifying the Program (or any work *
// * based on the Program) you indicate your acceptance of this *
// * statement, and all its terms. *
// ********************************************************************
//
//
// $Id: tiara.cc,v 1.3 2003/12/04 11:08:48 gcosmo Exp $
// GEANT4 tag
//
//
// --------------------------------------------------------------
// GEANT 4 - tiara
//
// --------------------------------------------------------------
// Comments
//
//
// --------------------------------------------------------------
#include "TiaraSim.hh"
#include "G4RegionStore.hh"
#include "G4ProductionCutsTable.hh"
#include "TiaraTally.hh"
#include "Randomize.hh"
int main(int, char **)
{
std::vector<G4double> binEdges;
binEdges.push_back(1.);
binEdges.push_back(3.);
binEdges.push_back(7.);
binEdges.push_back(13.);
binEdges.push_back(21.);
TiaraTally t;
t.setBinEdges(binEdges);
for (G4int e=0; e<1000; e++) {
for (G4int i=0; i<1000; i++) {
G4double r(1 + G4UniformRand()*20);
t.fill(r, G4UniformRand());
}
t.EndOfEventAction();
}
for (G4int i=0; i<t.size();i++) {
TiaraMeasure m(t.measure(i));
G4cout << "entries: " << m.GetEntries() << G4endl;
G4cout << m.GetMean() << G4endl;
G4cout << m.GetVariance() << G4endl;
G4cout << m.GetSum() << G4endl;
G4cout << m.GetSumSquared() << G4endl;
}
/*
Physics_MY_CASCADE_HP *phys = new Physics_MY_CASCADE_HP;
phys->Construct();
phys->SetCuts();
G4RegionStore::GetInstance()->UpdateMaterialList();
// Let G4ProductionCutsTable update couples
G4ProductionCutsTable::GetProductionCutsTable()->UpdateCoupleTable();
G4ProductionCutsTable::GetProductionCutsTable()->DumpCouples();
if(G4ProductionCutsTable::GetProductionCutsTable()->IsModified())
{
phys->BuildPhysicsTable();
G4ProductionCutsTable::GetProductionCutsTable()->PhysicsTableUpdated();
}
phys->DumpCutValuesTableIfRequested();
TiaraSim &tSim = TiaraSim::GetTiaraSim();
*/
}