Skip to content

Commit cb8ea42

Browse files
authored
Merge pull request #7460 from jmyrcha/dev6
o2-eve-display: quick fix to problems with storing wrong data using rapidjson
1 parent 3f2bc70 commit cb8ea42

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

EventVisualisation/DataConverter/src/VisualisationTrack.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ rapidjson::Value VisualisationTrack::jsonTree(rapidjson::Document::AllocatorType
100100

101101
tree.AddMember("count", rapidjson::Value().SetInt(this->getPointCount()), allocator);
102102
tree.AddMember("source", rapidjson::Value().SetInt(this->mSource), allocator);
103-
tree.AddMember("time", rapidjson::Value().SetFloat(this->mTime), allocator);
104-
tree.AddMember("charge", rapidjson::Value().SetInt(this->mCharge), allocator);
105-
tree.AddMember("theta", rapidjson::Value().SetFloat(this->mTheta), allocator);
106-
tree.AddMember("phi", rapidjson::Value().SetFloat(this->mPhi), allocator);
107-
tree.AddMember("eta", rapidjson::Value().SetFloat(this->mEta), allocator);
103+
//tree.AddMember("time", rapidjson::Value().SetFloat(this->mTime), allocator);
104+
//tree.AddMember("charge", rapidjson::Value().SetInt(this->mCharge), allocator);
105+
//tree.AddMember("theta", rapidjson::Value().SetFloat(this->mTheta), allocator);
106+
//tree.AddMember("phi", rapidjson::Value().SetFloat(this->mPhi), allocator);
107+
//tree.AddMember("eta", rapidjson::Value().SetFloat(this->mEta), allocator);
108108
tree.AddMember("PID", rapidjson::Value().SetInt(this->mPID), allocator);
109109

110110
jsonStartCoordinates.PushBack((float)mStartCoordinates[0], allocator);

0 commit comments

Comments
 (0)