-
Notifications
You must be signed in to change notification settings - Fork 2
/
DTTnPSegmentEff.h
43 lines (32 loc) · 892 Bytes
/
DTTnPSegmentEff.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef DTTnPSegmentEff_h
#define DTTnPSegmentEff_h
#include "DTTnPBaseAnalysis.h"
#include <string>
#include <cstdlib>
#include <iostream>
#include <sstream>
#include <vector>
#include <bitset>
#include <regex>
#include <map>
class DTTnPSegmentEff : public DTTnPBaseAnalysis
{
public:
DTTnPSegmentEff(const std::string & configFile);
~DTTnPSegmentEff() { };
void Loop() override;
protected:
void book() override;
void fill(Int_t iMu) override;
void harvesting();
void endJob() override;
std::pair<Int_t,Int_t> getPassingProbe(const Int_t iMu,
const Int_t iCh);
Int_t getPassingProbeInCh(const Int_t iMu,
const Int_t muSt,
const Int_t muSec,
const Int_t muWh,
const Int_t xMu,
const Int_t yMu);
};
#endif