Skip to content
Snippets Groups Projects
Commit a01a7792 authored by FU Chengdong's avatar FU Chengdong
Browse files

remove debug msg

parent 4125224a
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
std::array<float,6> CEPC::GetCovMatrix(edm4hep::TrackerHit& hit){ std::array<float,6> CEPC::GetCovMatrix(edm4hep::TrackerHit& hit){
if(hit.isAvailable()){ if(hit.isAvailable()){
int type = hit.getType(); int type = hit.getType();
std::cout << CEPCConf::TrkHitTypeBit::COMPOSITE_SPACEPOINT << " " << CEPCConf::TrkHitTypeBit::PLANAR << " " << std::endl;
if(std::bitset<32>(type)[CEPCConf::TrkHitTypeBit::COMPOSITE_SPACEPOINT]){ if(std::bitset<32>(type)[CEPCConf::TrkHitTypeBit::COMPOSITE_SPACEPOINT]){
return hit.getCovMatrix(); return hit.getCovMatrix();
} }
...@@ -26,7 +25,6 @@ std::array<float,6> CEPC::GetCovMatrix(edm4hep::TrackerHit& hit){ ...@@ -26,7 +25,6 @@ std::array<float,6> CEPC::GetCovMatrix(edm4hep::TrackerHit& hit){
float dV = hit.getCovMatrix(5); float dV = hit.getCovMatrix(5);
#ifndef MethodUsedInSpacePointBuilder #ifndef MethodUsedInSpacePointBuilder
std::cout << "======================" << std::endl;
TMatrixF diffs(2,3); TMatrixF diffs(2,3);
TMatrixF diffsT(3,2); TMatrixF diffsT(3,2);
diffs(0,0) = sin(thetaU)*cos(phiU); diffs(0,0) = sin(thetaU)*cos(phiU);
......
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