Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[93X] Tracker Maps for APV gain payload inspector #19607

Merged
merged 6 commits into from Jul 18, 2017
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 28 additions & 0 deletions CondCore/SiStripPlugins/interface/SiStripPayloadInspectorHelper.h
@@ -0,0 +1,28 @@
#ifndef CONDCORE_SISTRIPPLUGINS_SISTRIPPAYLOADINSPECTORHELPER_H
#define CONDCORE_SISTRIPPLUGINS_SISTRIPPAYLOADINSPECTORHELPER_H

#include <vector>
#include <numeric>

std::pair<float,float> getTheRange(std::map<uint32_t,float> values){

std::vector<float> v;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi @mmusich - please rearrange this to avoid the vector copy of the map.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi @davidlange6, copy is avoided. Thanks

for(const auto& element : values ){
v.push_back(element.second);
}

float sum = std::accumulate(std::begin(v), std::end(v), 0.0);
float m = sum / v.size();

float accum = 0.0;
std::for_each (std::begin(v), std::end(v), [&](const float d) {
accum += (d - m) * (d - m);
});

float stdev = sqrt(accum / (v.size()-1));

return std::make_pair(m-2*stdev,m+2*stdev);

}

#endif
1 change: 1 addition & 0 deletions CondCore/SiStripPlugins/plugins/BuildFile.xml
Expand Up @@ -19,5 +19,6 @@
<use name="CondCore/CondDB"/>
<use name="CondFormats/Common"/>
<use name="CondFormats/SiStripObjects"/>
<use name="CommonTools/TrackerMap"/>
<use name="boost_python"/>
</library>