diff --git a/Inputs/DetectorConfiguration/MUST2.detector b/Inputs/DetectorConfiguration/MUST2.detector index bf64823e4fdb1b16bc850eff3c80161fb5d24c59..92fcd64d3aab6592ad92baedf68f7ef5ec7dd59a 100644 --- a/Inputs/DetectorConfiguration/MUST2.detector +++ b/Inputs/DetectorConfiguration/MUST2.detector @@ -1,4 +1,15 @@ -%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +GeneralTarget +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +Target + THICKNESS= 4.8 + RADIUS= 5 + MATERIAL= CD2 + ANGLE= 0 + X= 0 + Y= 0 + Z= 0 +%%%%%%%%%%%%%%%%%%%%% MUST2Array %%%%%%% Telescope 1 %%%%%%% M2Telescope diff --git a/Inputs/EventGenerator/10He.reaction b/Inputs/EventGenerator/10He.reaction index e3dfbf77436852de8fcb6c5b48508020d24bab85..32a211b93585c567e758cf9e411131d9d839df76 100644 --- a/Inputs/EventGenerator/10He.reaction +++ b/Inputs/EventGenerator/10He.reaction @@ -43,7 +43,7 @@ TwoBodyReaction %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -ParticleDecay 10He +%ParticleDecay 10He Daughter= 9He n ExcitationEnergy= 0.1 0 DifferentialCrossSection= 11Li(d,3He)10He.txt particle9He @@ -51,7 +51,7 @@ ParticleDecay 10He %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -GammaDecay 9He +%GammaDecay 9He Cascade BranchingRatio= 30 Energies= 0.1 @@ -62,7 +62,7 @@ GammaDecay 9He %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -ParticleDecay 9He +%ParticleDecay 9He Daughter= 8He n DifferentialCrossSection= flat.txt shoot= 1 1 diff --git a/NPLib/IORoot/RootOutput.cxx b/NPLib/IORoot/RootOutput.cxx index 2d1bea3d2c980732eed351a3722980ad65f57501..54f558898ef60621ab561e6175df4c88324b0cca 100644 --- a/NPLib/IORoot/RootOutput.cxx +++ b/NPLib/IORoot/RootOutput.cxx @@ -73,9 +73,9 @@ RootOutput::RootOutput(TString fileNameBase, TString treeNameBase) pRootTree = new TTree(treeNameBase, "Data created / analyzed with the NPTool package"); pRootList = new TList(); - - // Init TAsciiFile objects - InitAsciiFiles(); + + // Init TAsciiFile objects + InitAsciiFiles(); } @@ -126,11 +126,13 @@ RootOutput::~RootOutput() { // The data is written to the file and the tree is closed: if (pRootFile && !NPOptionManager::getInstance()->GetPROOF()) { + pRootFile->cd(); cout << endl; cout << "Got histograms and Tree !" << endl; cout << " - Number of entries in the Tree: " << pRootTree->GetEntries() << endl; cout << " - Number of bites written to file: " << pRootTree->Write() << endl; + // write TAsciiFile if used // EventGenerator if (!pEventGenerator->IsEmpty()) pEventGenerator->Write(); diff --git a/NPLib/Makefile.arch b/NPLib/Makefile.arch index 988c5be16a4ea577156bb05c785d055cac22af3d..caba3263133b6edf67ee0584076e897444b04379 100644 --- a/NPLib/Makefile.arch +++ b/NPLib/Makefile.arch @@ -31,7 +31,7 @@ OPT = -g OPT2 = -g else OPT = -O -OPT2 = -O2 +OPT2 = -O3 endif endif diff --git a/NPLib/Physics/NPFunction.h b/NPLib/Physics/NPFunction.h index de1ee23af9d732765b53c976e7d067d1a9dcdceb..39f195b53d80038b3ddc93899273df7ceabba869 100644 --- a/NPLib/Physics/NPFunction.h +++ b/NPLib/Physics/NPFunction.h @@ -57,4 +57,4 @@ namespace NPL{ void RandomGaussian2D(double MeanX, double MeanY, double SigmaX, double SigmaY, double &X, double &Y, double NumberOfSigma= 10000); } -#endif \ No newline at end of file +#endif diff --git a/NPLib/Physics/NPGlobalSystemOfUnits.h b/NPLib/Physics/NPGlobalSystemOfUnits.h index 2112b85b5c0dd9d05a72251daf9738744f631ac6..8fafc495e960f7ebe49dfd9826779fb6b6b37d83 100644 --- a/NPLib/Physics/NPGlobalSystemOfUnits.h +++ b/NPLib/Physics/NPGlobalSystemOfUnits.h @@ -118,4 +118,4 @@ using NPUNITS::perCent; using NPUNITS::perThousand; using NPUNITS::perMillion; -#endif \ No newline at end of file +#endif diff --git a/NPLib/Physics/NPReaction.cxx b/NPLib/Physics/NPReaction.cxx index fb7639e0c596066468eaeb23e47b102a51330977..efa74ddfc3813f14b38c0e1ff8d31386b599a179 100644 --- a/NPLib/Physics/NPReaction.cxx +++ b/NPLib/Physics/NPReaction.cxx @@ -324,7 +324,7 @@ void Reaction::ReadConfigurationFile(string Path){ while (!ReactionFile.eof()) { //Pick-up next line getline(ReactionFile, LineBuffer); - + if (LineBuffer.compare(0, 15, "TwoBodyReaction") == 0) { ReadingStatus = true ;} diff --git a/NPLib/Physics/linkdef.h b/NPLib/Physics/linkdef.h index 87b5f45e11b38676bae538bf610c86635b1a5bf0..3ca75ab55b8209905747d9ea8fb85d3f743b6a85 100644 --- a/NPLib/Physics/linkdef.h +++ b/NPLib/Physics/linkdef.h @@ -2,4 +2,4 @@ #pragma link C++ defined_in "./NPReaction.h"; #pragma link C++ defined_in "./NPBeam.h"; #pragma link C++ defined_in "./NPNucleus.h"; -#endif \ No newline at end of file +#endif diff --git a/NPSimulation/Makefile b/NPSimulation/Makefile index a2c7acc85650b1ed93aec0a69d81de90d568f5f4..10c08a528aa629a5b7c9381fcf384f39b43766da 100644 --- a/NPSimulation/Makefile +++ b/NPSimulation/Makefile @@ -12,7 +12,7 @@ DelIncSrcFiles: ./scripts/deletefiles.sh NPSimulation: - make -j 10 -f Makefile.geant4 + make -j -f Makefile.geant4 clean: ./scripts/deletefiles.sh diff --git a/NPSimulation/src/DetectorConstruction.cc b/NPSimulation/src/DetectorConstruction.cc index bdfa7a5e5158cc671b361c764f087fb150610a55..5fc25dd6777e88485de2153e82fe479f611101bd 100644 --- a/NPSimulation/src/DetectorConstruction.cc +++ b/NPSimulation/src/DetectorConstruction.cc @@ -725,6 +725,12 @@ void DetectorConstruction::ReadConfigurationFile(string Path){ } ConfigFile.close(); + + if(m_Target==NULL){ + cout << "ERROR: No target define in detector file. Cannot perform simulation without target" << endl ; + exit(-1); + } + return ; } diff --git a/Outputs/Analysis/.gitignore b/Outputs/Analysis/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/Outputs/Simulation/.gitignore b/Outputs/Simulation/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391