Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7194357
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T20:21:16+00:00 2026-05-28T20:21:16+00:00

I know that this might be an easy task and i found, reading the

  • 0

I know that this might be an easy task and i found, reading the answer to other questions, that this code should do the trick

#include<fstream>
#include<iostream>
#include<iomanip>
#include<string>

using namespace std;


int main() {
  const char* filename = "integral_wh.out";
  std::ifstream inFile(filename);

  // Make sure the file stream is good
  if(!inFile) {
    cout << endl << "Failed to open file " << filename;
    return 1;
  }

double n;
string word;

while(inFile >> word >> n){

    cout << word;
    cout << n;
  }

  return 0;
}

The text file I’m reading from is

Integral, Sample: Z/W + jets - ntp_Alpgen_Ztt.root      3.33645 +-    0.31588
Integral, Sample: Z/W + jets1 - ntp_Alpgen_Zmm.root      2.52853 +-    0.34243
Integral, Sample: Z/W + jets2 - ntp_Alpgen_Zee.root      7.97980 +-    0.70667
Integral, Sample: Z/W + jets3 - ntp_Wj_0.root      0.00000 +-    0.00000
Integral, Sample: Z/W + jets4 - ntp_Wj_1.root      0.67329 +-    0.48556
Integral, Sample: Z/W + jets5 - ntp_Wj_2.root      1.44122 +-    0.89388

when I run the program it can’t read the double, it doesn’t cout anything.
I tried also with

   while(inFile >> n){

        cout << n;
      }

and doesn’t output anything. What i would like to obtain is the single numbers to use them for operations, maybe saving them into pairs, like

pair<double,double> alpgen = make_pair(3.33645,0.31588);

or something like that.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T20:21:18+00:00Added an answer on May 28, 2026 at 8:21 pm

    For a standard stream, the stream in operator (operator>>) uses a space to delimit tokens – in this case, your read operation will fail because it will read one string (Integral,), then the next token (Sample:) will attempt to be parsed into a double – which will fail.

    You need to consume all the string tokens, then the double etc.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know, that this might be super easy, but probably, working late just halted
I know that this has already been asked here but the answer (using a
I know this one might be easy but I couldn't figure out. I have
I know this might be an easy question but still: I got a dropdown
I know that this is somewhat subjective, but I wonder if there is a
I know that this is a simple question for PHP guys but I don't
I know that this is subjective and all, but still, can you provide some
I know that this can be easily done by using if(i%5 == 0 OR
I know that this question is asked a lot, I checked all of the
I know that this feature will be deprecated in C++0x, but for me as

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.