Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Riccardo Longo
JZCaPA
Commits
c1622763
Commit
c1622763
authored
Feb 21, 2019
by
Riccardo Longo
Browse files
Removal of some dummy cout
parent
721b5fe5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Analysis/src/DataReader.cpp
View file @
c1622763
...
...
@@ -170,7 +170,6 @@ void DataReader::LoadConfigurationFile(std::string _inFile ){
//Discard entries for any channel that does not apply to our run
if
(
m_runNumber
<
first_run
||
m_runNumber
>
last_run
)
continue
;
//If the entry applies, we store it in the vector
m_XMLparser
->
getChildValue
(
"channel"
,
i
,
"detector"
,
buffer_ch
->
detector
);
m_XMLparser
->
getChildValue
(
"channel"
,
i
,
"name"
,
buffer_ch
->
name
);
...
...
@@ -355,14 +354,10 @@ void DataReader::ProcessEvents(){
tree
->
GetEntry
(
ev
);
std
::
cout
<<
"Event : "
<<
ev
<<
std
::
endl
;
// Fill the raw waveforms
for
(
uint
detID
=
0
;
detID
<
(
int
)
m_detectors
.
size
();
detID
++
)
m_detectors
.
at
(
detID
)
->
FillHistograms
();
std
::
cout
<<
"Event : "
<<
ev
<<
std
::
endl
;
//Here if you're interested in already processed waveform
for
(
uint
ch
=
0
;
ch
<
m_nCh
;
ch
++
)
{
// Loop over samples in each channel
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment