Code Monkey home page Code Monkey logo

Comments (2)

lcorcodilos avatar lcorcodilos commented on July 30, 2024

Also add the following code (but note the need to add boost as a dependency),

#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <vector>
#include <string>
#include <algorithm>
#include <iostream>

class LumiFilter
{
private:
    boost::property_tree::ptree ptree;
public:
    LumiFilter(std::string filename = "/cms/xaastorage/PicoTrees/JSON_FILES/Cert_271036-284044_13TeV_ReReco_07Aug2017_Collisions16_JSON.txt");
    ~LumiFilter();
    float Eval(float run, float lumi);
};

LumiFilter::LumiFilter(std::string filename = "/cms/xaastorage/PicoTrees/JSON_FILES/Cert_271036-284044_13TeV_ReReco_07Aug2017_Collisions16_JSON.txt") {
    boost::property_tree::read_json(filename, ptree);
}

LumiFilter::~LumiFilter() {
}

float LumiFilter::Eval(float run, float lumi) {
    for ( const auto& runEntry : ptree ) {
        if (std::stoul(runEntry.first) == (unsigned int)run) {
            for ( const auto& lrEntry : runEntry.second ) {
                const auto lrNd = lrEntry.second;
                unsigned int lumStart = std::stoul(lrNd.begin()->second.data());
                unsigned int lumEnd = std::stoul((++lrNd.begin())->second.data());
                unsigned int L = (unsigned int) lumi;
                if ((L < lumEnd) && (L > lumStart)) {
                    return 1.;
                }
            }
        }
    }
    return 0.;
}

from timber.

lcorcodilos avatar lcorcodilos commented on July 30, 2024

Adapted version of copied script (LumiFilter) included in #19. Still need to port printLumiJson.py

from timber.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.