L1Trigger
TrackFindingTracklet
src
TrackFitMemory.cc
Go to the documentation of this file.
1
#include "
L1Trigger/TrackFindingTracklet/interface/TrackFitMemory.h
"
2
#include "
L1Trigger/TrackFindingTracklet/interface/SLHCEvent.h
"
3
#include "
L1Trigger/TrackFindingTracklet/interface/Tracklet.h
"
4
#include <iomanip>
5
#include <filesystem>
6
7
using namespace
std
;
8
using namespace
trklet
;
9
10
TrackFitMemory::TrackFitMemory(
string
name
,
Settings
const
& settings,
double
phimin
,
double
phimax
)
11
:
MemoryBase
(
name
, settings) {
12
phimin_
=
phimin
;
13
phimax_
=
phimax
;
14
}
15
16
void
TrackFitMemory::writeTF
(
bool
first
,
unsigned
int
iSector) {
17
iSector_
= iSector;
18
const
string
dirFT =
settings_
.
memPath
() +
"FitTrack/"
;
19
20
std::ostringstream oss;
21
oss << dirFT <<
"TrackFit_"
<<
getName
() <<
"_"
<< std::setfill(
'0'
) << std::setw(2) << (
iSector_
+ 1) <<
".dat"
;
22
auto
const
&
fname
= oss.str();
23
24
openfile
(
out_
,
first
, dirFT,
fname
, __FILE__, __LINE__);
25
26
out_
<<
"BX = "
<< (bitset<3>)
bx_
<<
" Event : "
<<
event_
<< endl;
27
28
for
(
unsigned
int
j
= 0;
j
<
tracks_
.size();
j
++) {
29
out_
<<
"0x"
;
30
out_
<< std::setfill(
'0'
) << std::setw(2);
31
out_
<< hex <<
j
<<
dec
<<
" "
;
32
out_
<<
tracks_
[
j
]->trackfitstr() <<
" "
<<
trklet::hexFormat
(
tracks_
[
j
]->trackfitstr());
33
out_
<<
"\n"
;
34
}
35
out_
.close();
36
37
bx_
++;
38
event_
++;
39
if
(
bx_
> 7)
40
bx_
= 0;
41
}
trklet::MemoryBase::settings_
Settings const & settings_
Definition:
MemoryBase.h:50
trklet::TrackFitMemory::phimax_
double phimax_
Definition:
TrackFitMemory.h:43
phimin
float phimin
Definition:
ReggeGribovPartonMCHadronizer.h:107
trklet::openfile
std::ofstream openfile(const std::string &dir, const std::string &fname, const char *file, int line)
Definition:
Util.h:138
trklet::Settings
Definition:
Settings.h:52
trklet::MemoryBase::event_
int event_
Definition:
MemoryBase.h:48
TrackFitMemory.h
trklet::MemoryBase::out_
std::ofstream out_
Definition:
MemoryBase.h:46
trklet::MemoryBase::bx_
int bx_
Definition:
MemoryBase.h:47
trklet::MemoryBase::getName
std::string const & getName() const
Definition:
MemoryBase.h:19
trklet::TrackFitMemory::phimin_
double phimin_
Definition:
TrackFitMemory.h:42
SLHCEvent.h
first
auto first
Definition:
CAHitNtupletGeneratorKernelsImpl.h:125
trklet::MemoryBase
Definition:
MemoryBase.h:13
trklet::Settings::memPath
std::string memPath() const
Definition:
Settings.h:192
trklet
Definition:
AllInnerStubsMemory.h:10
phimax
float phimax
Definition:
ReggeGribovPartonMCHadronizer.h:106
alignmentValidation.fname
string fname
main script
Definition:
alignmentValidation.py:959
std
Definition:
JetResolutionObject.h:76
trklet::TrackFitMemory::tracks_
std::vector< Tracklet * > tracks_
Definition:
TrackFitMemory.h:44
Skims_PA_cff.name
name
Definition:
Skims_PA_cff.py:17
trklet::hexFormat
std::string hexFormat(const std::string &binary)
Definition:
Util.h:19
trklet::TrackFitMemory::writeTF
void writeTF(bool first, unsigned int iSector)
Definition:
TrackFitMemory.cc:16
dqmiolumiharvest.j
j
Definition:
dqmiolumiharvest.py:66
TauDecayModes.dec
dec
Definition:
TauDecayModes.py:142
Tracklet.h
trklet::MemoryBase::iSector_
unsigned int iSector_
Definition:
MemoryBase.h:44
Generated for CMSSW Reference Manual by
1.8.16