File indexing completed on 2025-04-04 08:04:42
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033 #include "Run.hh"
0034
0035 #include "TestParameters.hh"
0036
0037 #include "G4ElectronIonPair.hh"
0038 #include "G4LossTableManager.hh"
0039 #include "G4PhysicalConstants.hh"
0040 #include "G4Run.hh"
0041 #include "G4Step.hh"
0042 #include "G4SystemOfUnits.hh"
0043 #include "Randomize.hh"
0044
0045
0046
0047 Run::Run() : G4Run(), fElIonPair(0), fParam(TestParameters::GetPointer())
0048 {
0049 fElIonPair = G4LossTableManager::Instance()->ElectronIonPair();
0050 }
0051
0052
0053
0054 void Run::BeginOfRun()
0055 {
0056
0057 fTotStepGas = fTotCluster = fMeanCluster = fOverflow = fTotEdep = fStepGas = fCluster = 0.0;
0058 fEvt = 0;
0059
0060 fFactorALICE = fParam->GetFactorALICE();
0061 fWidthALICE = fParam->GetEnergySmear();
0062
0063 SetVerbose(1);
0064
0065 fNbins = fParam->GetNumberBins();
0066 fMaxEnergy = fParam->GetMaxEnergy();
0067
0068 fEgas.resize(fNbins, 0.0);
0069 fEdep.reset();
0070
0071 if (fVerbose > 0) {
0072 G4int binsCluster = fParam->GetNumberBinsCluster();
0073 G4cout << " BinsCluster= " << binsCluster << " BinsE= " << fNbins
0074 << " Emax(keV)= " << fMaxEnergy / keV << G4endl;
0075 G4cout << " WidthALICE(keV)= " << fWidthALICE / keV << " FactorALICE= " << fFactorALICE
0076 << G4endl;
0077 }
0078 }
0079
0080
0081
0082 void Run::EndOfRun()
0083 {
0084 G4int nEvt = GetNumberOfEvent();
0085 G4double norm = (nEvt > 0) ? 1.0 / (G4double)nEvt : 0.0;
0086
0087 fTotStepGas *= norm;
0088 fTotCluster *= norm;
0089 fMeanCluster *= norm;
0090 fOverflow *= norm;
0091
0092 G4double y1 = fEdep.mean();
0093 G4double y2 = fEdep.rms();
0094
0095 G4double de = fMaxEnergy / G4double(fNbins);
0096 G4double x1 = -de * 0.5;
0097
0098 fFactorALICE = fParam->GetFactorALICE();
0099
0100 G4cout << " ====================================================" << G4endl;
0101 G4cout << " Beam Particle: " << fParam->GetBeamParticle()->GetParticleName() << G4endl
0102 << " Ekin(MeV) = " << fParam->GetBeamEnergy() / MeV << G4endl
0103 << " Z(mm) = " << fParam->GetPositionZ() / mm << G4endl;
0104 G4cout << " ================== run summary =====================" << G4endl;
0105 G4int prec = G4cout.precision(5);
0106 G4cout << " End of Run TotNbofEvents = " << nEvt << G4endl;
0107 G4cout << " Energy(keV) per ADC channel = " << 1.0 / (keV * fFactorALICE) << G4endl;
0108
0109 G4cout << G4endl;
0110 G4cout << " Mean energy deposit in absorber = " << y1 / keV << " +- "
0111 << y2 * std::sqrt(norm) / keV << " keV; ";
0112 if (y1 > 0.0) {
0113 G4cout << " RMS/Emean = " << y2 / y1;
0114 }
0115 G4cout << G4endl;
0116 G4cout << " Mean number of steps in absorber= " << fTotStepGas
0117 << "; mean number of ion-clusters = " << fTotCluster << " MeanCluster= " << fMeanCluster
0118 << G4endl;
0119 G4cout << G4endl;
0120
0121 G4cout << " ====== Energy deposit distribution Noverflows= " << fOverflow
0122 << " ====== " << G4endl;
0123 G4cout << " bin nb Elow entries normalized " << G4endl;
0124
0125 std::ofstream fileOut("distribution.out", std::ios::out);
0126 fileOut.setf(std::ios::scientific, std::ios::floatfield);
0127
0128 x1 = 0.0;
0129
0130 fileOut << fNbins << G4endl;
0131
0132 for (G4int j = 0; j < fNbins; ++j) {
0133 G4cout << std::setw(5) << j << std::setw(10) << x1 / keV << std::setw(12) << fEgas[j]
0134 << std::setw(12) << fEgas[j] * norm << G4endl;
0135 fileOut << x1 / keV << "\t" << fEgas[j] << G4endl;
0136 x1 += de;
0137 }
0138 G4cout.precision(prec);
0139
0140 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
0141
0142 G4double normf = fParam->GetNormFactor();
0143 analysisManager->ScaleH1(1, norm);
0144 analysisManager->ScaleH1(2, norm);
0145 analysisManager->ScaleH1(3, norm * normf);
0146
0147 G4cout << " ================== run end ==========================" << G4endl;
0148 }
0149
0150
0151
0152 void Run::BeginOfEvent()
0153 {
0154 fTotEdep = 0.0;
0155 fStepGas = 0;
0156 fCluster = 0;
0157 ++fEvt;
0158 }
0159
0160
0161
0162 void Run::EndOfEvent()
0163 {
0164 fTotStepGas += fStepGas;
0165 fTotCluster += fCluster;
0166
0167 if (fWidthALICE > 0.0) {
0168 G4double x = G4RandGauss::shoot(0., fWidthALICE);
0169 fTotEdep += x;
0170 fTotEdep = std::max(fTotEdep, 0.0);
0171 }
0172
0173 G4int idx = G4int(fTotEdep * fNbins / fMaxEnergy);
0174
0175 if (idx < 0) {
0176 fEgas[0] += 1.0;
0177 }
0178 if (idx >= fNbins) {
0179 fOverflow += 1.0;
0180 }
0181 else {
0182 fEgas[idx] += 1.0;
0183 }
0184
0185 G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
0186
0187 analysisManager->FillH1(1, fTotEdep / keV, 1.0);
0188 analysisManager->FillH1(2, fCluster, 1.0);
0189 analysisManager->FillH1(3, fTotEdep * fFactorALICE, 1.0);
0190 fEdep.fill(fTotEdep, 1.0);
0191 }
0192
0193
0194
0195 void Run::Merge(const G4Run* run)
0196 {
0197 const Run* localRun = static_cast<const Run*>(run);
0198
0199 fTotStepGas += localRun->fTotStepGas;
0200 fTotCluster += localRun->fTotCluster;
0201 fMeanCluster += localRun->fMeanCluster;
0202 fOverflow += localRun->fOverflow;
0203
0204 G4StatDouble* stat = const_cast<G4StatDouble*>(localRun->GetStat());
0205
0206 fEdep.add(stat);
0207
0208 for (G4int j = 0; j < fNbins; ++j) {
0209 fEgas[j] += localRun->fEgas[j];
0210 }
0211
0212 G4Run::Merge(run);
0213 }
0214
0215
0216
0217 void Run::AddEnergy(G4double edep, const G4Step* step)
0218 {
0219 if (1 < fVerbose) {
0220 G4cout << "Run::AddEnergy: e(keV)= " << edep / keV << G4endl;
0221 }
0222 fTotEdep += edep;
0223 if (step) {
0224 if (1 == step->GetTrack()->GetTrackID()) {
0225 fStepGas += 1.0;
0226 }
0227
0228 fMeanCluster += fElIonPair->MeanNumberOfIonsAlongStep(step);
0229 fCluster += fElIonPair->SampleNumberOfIonsAlongStep(step);
0230 }
0231 }
0232
0233