Fork me on GitHub

Changeset 341014c in git for classes/DelphesStream.cc


Ignore:
Timestamp:
Feb 12, 2019, 9:29:17 PM (6 years ago)
Author:
Pavel Demin <pavel-demin@…>
Branches:
ImprovedOutputFile, Timing, llp, master
Children:
6455202
Parents:
45e58be
Message:

apply .clang-format to all .h, .cc and .cpp files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesStream.cc

    r45e58be r341014c  
    1717 */
    1818
    19 
    2019/** \class DelphesStream
    2120 *
     
    2827#include "classes/DelphesStream.h"
    2928
     29#include <errno.h>
     30#include <limits.h>
     31#include <math.h>
     32#include <stdio.h>
    3033#include <stdlib.h>
    31 #include <limits.h>
    3234#include <string.h>
    33 #include <stdio.h>
    34 #include <errno.h>
    35 #include <math.h>
    3635
    3736#include <iostream>
     
    6564    if(fFirstHugePos && value == HUGE_VAL)
    6665    {
    67       fFirstHugePos = false; 
     66      fFirstHugePos = false;
    6867      cout << "** WARNING: too large positive value, return " << value << endl;
    6968    }
    7069    else if(fFirstHugeNeg && value == -HUGE_VAL)
    7170    {
    72       fFirstHugeNeg = false; 
     71      fFirstHugeNeg = false;
    7372      cout << "** WARNING: too large negative value, return " << value << endl;
    7473    }
    7574    else if(fFirstZero)
    7675    {
    77       fFirstZero = false; 
     76      fFirstZero = false;
    7877      value = 0.0;
    7978      cout << "** WARNING: too small value, return " << value << endl;
     
    9493    if(fFirstLongMin && value == LONG_MIN)
    9594    {
    96       fFirstLongMin = false; 
     95      fFirstLongMin = false;
    9796      cout << "** WARNING: too large positive value, return " << value << endl;
    9897    }
    9998    else if(fFirstLongMax && value == LONG_MAX)
    10099    {
    101       fFirstLongMax = false; 
     100      fFirstLongMax = false;
    102101      cout << "** WARNING: too large negative value, return " << value << endl;
    103102    }
Note: See TracChangeset for help on using the changeset viewer.