Skip to content

Commit 7cf5055

Browse files
committed
Save the options from WCSimPrimaryGeneratorAction
1 parent 5ba17b1 commit 7cf5055

6 files changed

+47
-5
lines changed

include/WCSimEventAction.hh

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private:
5353
G4String DigitizerChoice;
5454
G4String TriggerChoice;
5555
bool ConstructedDAQClasses;
56-
bool SavedDAQOptions;
56+
bool SavedOptions;
5757
};
5858

5959

include/WCSimPrimaryGeneratorAction.hh

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
#include <fstream>
99

10+
#include "WCSimRootOptions.hh"
11+
1012
class WCSimDetectorConstruction;
1113
class G4ParticleGun;
1214
class G4GeneralParticleSource;
@@ -51,6 +53,10 @@ public:
5153
G4double GetYDir() {return yDir;};
5254
G4double GetZDir() {return zDir;};
5355

56+
G4String GetGeneratorTypeString();
57+
58+
void SaveOptionsToOutput(WCSimRootOptions * wcopt);
59+
5460
private:
5561
WCSimDetectorConstruction* myDetector;
5662
G4ParticleGun* particleGun;

include/WCSimRootOptions.hh

+11
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,13 @@ public:
107107
//WCSimPhysicsListFactory gets
108108
string GetPhysicsListName() {return PhysicsListName;}
109109
string GetSecondaryHadModel() {return SecondaryHadModel;}
110+
//WCSimPrimaryGeneratorAction sets
111+
void SetVectorFileName(string iVectorFileName) {VectorFileName = iVectorFileName;}
112+
void SetGeneratorType(string iGeneratorType) {GeneratorType = iGeneratorType;}
113+
//WCSimPrimaryGeneratorAction gets
114+
string GetVectorFileName() {return VectorFileName;}
115+
string GetGeneratorType() {return GeneratorType;}
116+
110117

111118
private:
112119
//WCSimDetector*
@@ -155,6 +162,10 @@ private:
155162
//WCSimPhysicsListFactory
156163
string PhysicsListName;
157164
string SecondaryHadModel;
165+
166+
//WCSimPrimaryGeneratorAction
167+
string VectorFileName;
168+
string GeneratorType;
158169

159170
ClassDef(WCSimRootOptions,1) //WCSimRootEvent structure
160171
};

src/WCSimEventAction.cc

+5-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ WCSimEventAction::WCSimEventAction(WCSimRunAction* myRun,
6060
:runAction(myRun), generatorAction(myGenerator),
6161
detectorConstructor(myDetector),
6262
ConstructedDAQClasses(false),
63-
SavedDAQOptions(false)
63+
SavedOptions(false)
6464
{
6565
DAQMessenger = new WCSimWCDAQMessenger(this);
6666

@@ -401,16 +401,18 @@ void WCSimEventAction::EndOfEventAction(const G4Event* evt)
401401

402402
//save DAQ options here. This ensures that when the user selects a default option
403403
// (e.g. with -99), the saved option value in the output reflects what was run
404-
if(!SavedDAQOptions) {
404+
if(!SavedOptions) {
405405
WCSimRootOptions * wcsimopt = runAction->GetRootOptions();
406406
//Dark noise
407407
WCDNM->SaveOptionsToOutput(wcsimopt);
408408
//Digitizer
409409
WCDM->SaveOptionsToOutput(wcsimopt);
410410
//Trigger
411411
WCTM->SaveOptionsToOutput(wcsimopt);
412+
//Generator
413+
generatorAction->SaveOptionsToOutput(wcsimopt);
412414

413-
SavedDAQOptions = true;
415+
SavedOptions = true;
414416
}
415417
}
416418

src/WCSimPrimaryGeneratorAction.cc

+21-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ inline int atoi( const string& s ) {return std::atoi( s.c_str() );}
3535

3636
WCSimPrimaryGeneratorAction::WCSimPrimaryGeneratorAction(
3737
WCSimDetectorConstruction* myDC)
38-
:myDetector(myDC)
38+
:myDetector(myDC), vectorFileName("")
3939
{
4040
//T. Akiri: Initialize GPS to allow for the laser use
4141
MyGPS = new G4GeneralParticleSource();
@@ -264,6 +264,26 @@ void WCSimPrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent)
264264
}
265265
}
266266

267+
void WCSimPrimaryGeneratorAction::SaveOptionsToOutput(WCSimRootOptions * wcopt)
268+
{
269+
if(useMulineEvt)
270+
wcopt->SetVectorFileName(vectorFileName);
271+
else
272+
wcopt->SetVectorFileName("");
273+
wcopt->SetGeneratorType(GetGeneratorTypeString());
274+
}
275+
276+
G4String WCSimPrimaryGeneratorAction::GetGeneratorTypeString()
277+
{
278+
if(useMulineEvt)
279+
return "muline";
280+
else if(useNormalEvt)
281+
return "gun";
282+
else if(useLaserEvt)
283+
return "laser";
284+
return "";
285+
}
286+
267287
// Returns a vector with the tokens
268288
vector<string> tokenize( string separators, string input )
269289
{

src/WCSimRootOptions.cc

+3
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,8 @@ void WCSimRootOptions::Print()
6969
<< "Physics List Factory:" << endl
7070
<< "\tPhysicsListName: " << PhysicsListName << endl
7171
<< "\tSecondaryHadModel: " << SecondaryHadModel << endl
72+
<< "WCSimPrimaryGeneratorAction" << endl
73+
<< "\tVectorFileName: " << VectorFileName << endl
74+
<< "\tGeneratorType: " << GeneratorType << endl
7275
<< endl;
7376
}

0 commit comments

Comments
 (0)