Skip to content
Snippets Groups Projects
Commit 8eb99a45 authored by Cyril Lenain's avatar Cyril Lenain :surfer_tone3:
Browse files

* Changing Neutrons vector type in NPCrossTalk

parent 71fbfcf9
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,7 @@ void CrossTalk::AddHitVector(const vector<double>& X, const vector<double>& Y, c ...@@ -55,7 +55,7 @@ void CrossTalk::AddHitVector(const vector<double>& X, const vector<double>& Y, c
sizeHit = X.size(); sizeHit = X.size();
} }
vector<double> CrossTalk::ComputeCrossTalk(){ vector<int> CrossTalk::ComputeCrossTalk(){
FirstHit = -1; FirstHit = -1;
......
...@@ -36,7 +36,7 @@ namespace NPL{ ...@@ -36,7 +36,7 @@ namespace NPL{
void AddHitVector(const std::vector<double>& X, const std::vector<double>& Y,const std::vector<double>& Z, const std::vector<double>& dX, const std::vector<double>& dY, const std::vector<double>& dZ, const std::vector<double>& T); void AddHitVector(const std::vector<double>& X, const std::vector<double>& Y,const std::vector<double>& Z, const std::vector<double>& dX, const std::vector<double>& dY, const std::vector<double>& dZ, const std::vector<double>& T);
std::vector<double> ComputeCrossTalk(); std::vector<int> ComputeCrossTalk();
int GetFirstN(); int GetFirstN();
...@@ -51,7 +51,7 @@ namespace NPL{ ...@@ -51,7 +51,7 @@ namespace NPL{
const std::vector<double>* HitT; const std::vector<double>* HitT;
std::vector<int> ClustHit; std::vector<int> ClustHit;
std::vector<double> m_Neutrons; std::vector<int> m_Neutrons;
double coef; double coef;
unsigned int sizeHit ; unsigned int sizeHit ;
int FirstHit; int FirstHit;
......
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