125 lines
4.2 KiB
C++
125 lines
4.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. *
|
|
// ********************************************************************
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: FCALPrimaryGeneratorAction.cc,v 1.2 2002/12/12 19:16:33 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-05-00 $
|
|
//
|
|
//
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#include "FCALPrimaryGeneratorAction.hh"
|
|
|
|
|
|
#include "G4Event.hh"
|
|
#include "G4ParticleGun.hh"
|
|
#include "G4ParticleTable.hh"
|
|
#include "G4ParticleDefinition.hh"
|
|
#include "Randomize.hh"
|
|
|
|
#include "fstream.h"
|
|
#include "stdlib.h"
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
FCALPrimaryGeneratorAction::FCALPrimaryGeneratorAction()
|
|
{
|
|
X = new G4double[5001];
|
|
Y = new G4double[5001];
|
|
Z = new G4double[5001];
|
|
Cos_X = new G4double[5001];
|
|
Cos_Y = new G4double[5001];
|
|
Cos_Z = new G4double[5001];
|
|
|
|
|
|
G4int Nparticles = 1;
|
|
particleGun = new G4ParticleGun(Nparticles);
|
|
|
|
// default Particle
|
|
G4String particleName;
|
|
G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable();
|
|
G4ParticleDefinition* particle = particleTable->FindParticle(particleName="e+");
|
|
particleGun->SetParticleDefinition(particle);
|
|
|
|
|
|
// default Energy
|
|
particleGun->SetParticleEnergy(80*GeV);
|
|
|
|
// Read Kinematics from file
|
|
G4int InEvent = 0;
|
|
G4String file_name = "data-tracks/tracks-80GeV.dat";
|
|
ifstream Traks_file(file_name);
|
|
if(!Traks_file) G4cerr << "WARNING: Failed to open file " << file_name << endl;
|
|
Traks_file.seekg(0);
|
|
|
|
while(!(Traks_file.eof())) {
|
|
InEvent++;
|
|
Traks_file >> Ievent >> X[InEvent] >> Y[InEvent] >> Z[InEvent]
|
|
>> Cos_X[InEvent] >> Cos_Y[InEvent] >> Cos_Z[InEvent];
|
|
};
|
|
|
|
Nevent = 2500;
|
|
};
|
|
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
FCALPrimaryGeneratorAction::~FCALPrimaryGeneratorAction()
|
|
{
|
|
delete particleGun;
|
|
delete [] X;
|
|
delete [] Y;
|
|
delete [] Z;
|
|
delete [] Cos_X;
|
|
delete [] Cos_Y;
|
|
delete [] Cos_Z;
|
|
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void FCALPrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent)
|
|
{
|
|
//this function is called at the begining of event
|
|
|
|
Nevent++;
|
|
|
|
particleGun->SetParticlePosition(G4ThreeVector(X[Nevent]*cm,Y[Nevent]*cm,Z[Nevent]*cm));
|
|
particleGun->SetParticleMomentumDirection(G4ThreeVector(-Cos_X[Nevent],Cos_Y[Nevent],-Cos_Z[Nevent]));
|
|
|
|
|
|
particleGun->GeneratePrimaryVertex(anEvent);
|
|
|
|
G4cout << "--------------------------------------------" << endl;
|
|
G4cout << " Event, X,Y,Z Generated Vertex : " << endl;
|
|
G4cout << Nevent << " " << X[Nevent] << " " << Y[Nevent] << " " << Z[Nevent]<< endl;
|
|
G4cout << "--------------------------------------------" << endl;
|
|
|
|
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
|