Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesStream.cc

    r341014c rcab38f6  
    1717 */
    1818
     19
    1920/** \class DelphesStream
    2021 *
     
    2728#include "classes/DelphesStream.h"
    2829
     30#include <stdlib.h>
     31#include <limits.h>
     32#include <string.h>
     33#include <stdio.h>
    2934#include <errno.h>
    30 #include <limits.h>
    3135#include <math.h>
    32 #include <stdio.h>
    33 #include <stdlib.h>
    34 #include <string.h>
    3536
    3637#include <iostream>
     
    6465    if(fFirstHugePos && value == HUGE_VAL)
    6566    {
    66       fFirstHugePos = false;
     67      fFirstHugePos = false; 
    6768      cout << "** WARNING: too large positive value, return " << value << endl;
    6869    }
    6970    else if(fFirstHugeNeg && value == -HUGE_VAL)
    7071    {
    71       fFirstHugeNeg = false;
     72      fFirstHugeNeg = false; 
    7273      cout << "** WARNING: too large negative value, return " << value << endl;
    7374    }
    7475    else if(fFirstZero)
    7576    {
    76       fFirstZero = false;
     77      fFirstZero = false; 
    7778      value = 0.0;
    7879      cout << "** WARNING: too small value, return " << value << endl;
     
    9394    if(fFirstLongMin && value == LONG_MIN)
    9495    {
    95       fFirstLongMin = false;
     96      fFirstLongMin = false; 
    9697      cout << "** WARNING: too large positive value, return " << value << endl;
    9798    }
    9899    else if(fFirstLongMax && value == LONG_MAX)
    99100    {
    100       fFirstLongMax = false;
     101      fFirstLongMax = false; 
    101102      cout << "** WARNING: too large negative value, return " << value << endl;
    102103    }
Note: See TracChangeset for help on using the changeset viewer.