Skip to content
Snippets Groups Projects
Commit 7bc4a8b5 authored by matta's avatar matta
Browse files

* Fixing minor bug to run 10He Analysis

* Adding line for avoiding warning when compiling NPS
parent e6955f47
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ Target
THICKNESS= 0.001
RADIUS= 45
MATERIAL= CD2
ANGLE= 45
ANGLE= 0
X= 0
Y= 0
Z= 0
......@@ -128,7 +128,7 @@ VIS= all
%%%%%%%%%%%%%%%%%%%%%
AddThinSi
%AddThinSi
%%%%%%%%%% Det 1 %%%%%%%%
ThinSi
A= 17.61 9.85 104.11
......
ConfigMust2
MAX_STRIP_MULTIPLICITY 1
STRIP_ENERGY_MATCHING_TOLERANCE 10
MUST2 DISABLE_ALL MM4
MAX_STRIP_MULTIPLICITY 2
SI_X_E_RAW_THRESHOLD 0
......@@ -21,7 +21,7 @@ int main(int argc,char** argv)
}
// Instantiate RootOutput
RootOutput::getInstance("Analysis/Paris_AnalyzedData", "AnalysedTree");
RootOutput::getInstance("Analysis/10_AnalyzedData", "AnalysedTree");
// get input files from NPOptionManager
string reactionfileName = myOptionManager->GetReactionFile();
......
......@@ -63,7 +63,8 @@ Chamber::Chamber()
G4Material* Chamber::GetMaterialFromLibrary(G4String MaterialName, G4double Temperature, G4double Pressure)
{
Temperature = 0 ;
Pressure = 0 ;
G4Material* myMaterial;
......
......@@ -554,7 +554,7 @@ void ThinSi::InitializeRootOutput()
{
RootOutput *pAnalysis = RootOutput::getInstance();
TTree *pTree = pAnalysis->GetTree();
pTree->Branch("ThinSi", "TSSSDData", &m_Event) ;
pTree->Branch("SSSD", "TSSSDData", &m_Event) ;
}
// Read sensitive part and fill the Root tree.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment