code stringlengths 3 1.18M | language stringclasses 1
value |
|---|---|
/**
* use this in conjunction with other 0LISM classes to make map of neutral densities or temperatures etc.
*
*/
public class NeutralMapMaker {
public NeutralMapMaker() {
HelioVector bulk = new HelioVector(HelioVector.SPHERICAL,26000.0,(74+180)*Math.PI/180.0,5.5*Math.PI/180);
// inflow velocity, ... | Java |
/**
* The usual "hot model" here.. only with one species for now
*
*/
public class GaussianOxVLISM extends InterstellarMedium {
public HelioVector vBulk1;
public HelioVector vBulk2;
public double temp1, temp2, density, fraction;
public static double KB = 1.3807*Math.pow(10,-23); // J/K
public static... | Java |
/**
* This is an abstract class for modelling the interstellar medium
*
* use this assuming that the distributions are homogenous
* but not necessarily isotropic
*
* extend this and change the distributions needed for the model
*/
public abstract class InterstellarMedium {
public static double KB = 1.38*... | Java |
import java.lang.Math;
import java.util.*;
/* Attempt to model pickup distribution including Vincident and B in 3D
Warsaw - July 2000 - Lukas Saul
Parameters from PickMain (Moebius et al) :
"Solar wind: Velocity [km/s], Azimuth[deg],Elevation[deg], Density [cm^(-3)]y"
540.000 177.0... | Java |
import java.util.Vector;
/**
* DIsplay the results of a NeutralDensity calculation
* - lukas saul Nov. 2004
*
*/
public class DensityDisplay {
private file f;
private JColorGraph jcg;
private double[] x,y,z;
public static double AU = 1.49598* Math.pow(10,11); //meters
public DensityDisplay() {
... | Java |
import java.util.Random;
public class BenfordDataMaker {
public file f;
public Random r;
public BenfordDataMaker() {
r = new Random();
f = new file("testdatarandom.txt");
f.initWrite(false);
for (int i =0; i<10000; i++) {
f.write(r.nextDouble()+"\t");
f.write(r.nextGaussian()+"\t");
... | Java |
/**
* Utility class for passing around 2D functions
*
* Use this to get a 1D function by fixing one of the variables..
* the index to fix is passed in ( 0 or 1 )
*/
//import gaiatools.numeric.function.Function;
public abstract class FunctionII {
/**
* Override this for the function needed!!
*
*/
pu... | Java |
//
import flanagan.integration.*;
//import drasys.or.nonlinear.*;
/*
* Utility class for passing around functions
*
* implements the drasys "FunctionI" interface to enable Simpsons method
* outsource.
*/
public abstract class Function implements IntegralFunction {
public double function(double var) {
... | Java |
import java.util.StringTokenizer;
import java.util.Vector;
/**
* Adapted for heliosphere display-
*
* Lets generalize this to read from an unknown 3d (color +2d) field
* where we don't know how many points there are.
*
*/
public class IBEX_image {
public static double AU = 1.49598* Math.pow(10,11); //met... | Java |
import java.util.Random;
/**
* do some time stepping and track trajectories
*
*/
public class HelioTrajectories {
public int numToRun = 10000;
public int timeStep = 10; // seconds
public static double KB = 1.38065 * Math.pow(10,-23);
public static double Ms = 1.98892 * Math.pow(10,30); // kg
//pu... | Java |
import cern.jet.math.Bessel;
import java.lang.Math;
import java.util.Date;
import drasys.or.nonlinear.*;
public class VIonBulk{
public static double Ms = 2 * Math.pow(10,30);
public static double G = 6.67 * Math.pow(10,-11);
BofTheta boftheta;
double b,r,v0;
public VIonBulk(double r, double v0, doub... | Java |
/**
*
*
*
*/
public class MaxwellianDistribution extends Distribution {
public double temperature, density, thermalSpeed;
/**
*
*/
public MaxwellianDistribution () {
temperature = 0;
density = 0;
thermalSpeed = 0;
}
public MaxwellianDistribution (double n, double t)) {
m/2pikt ^ 3/... | Java |
public class AI {
private Vector aiInputs; // only put AIInputInterfaces here
private Vector aiOutputs; // only put AIOutputInterfaces here
private AIManager aim;
private Compiler compiler;
private Runners[] runners;
public AI() {
| Java |
import java.math.*;
import java.number.BigInteger;
public class JulyPonder {
public JulyPonder () {
}
public static final void main(String[] args) {
JulyPonder jp = new JulyPonder();
}
}
| Java |
import java.awt.*;
import java.beans.*;
import java.awt.print.*;
import javax.swing.*;
import java.io.*;
/**
* Allows printing of documents displayed in JDialogs
*/
class PrintableDialog extends JDialog implements Printable,Serializable {
/**
* The method @print@ must be implemented for @Printable@ inter... | Java |
/**
*
* Use this to calculate the v dist. of int. helium using
* the assumption of isotropic adiabatic cooling
*
*/
public class AdiabaticModel {
public double AU = 1.49598* Math.pow(10,11); //meters
public double NaN = Double.NaN;
public double MAX = Double.MAX_VALUE;
public double N0 = Math.pow(1... | Java |
//import ij.*;
//import ij.gui.*;
import java.util.*;
import flanagan.math.*;
/**
* Lukas Saul, UNH Space Science Dept.
* Curvefitting utilities here.
*
* Adapted to use simplex method from flanagan java math libraries - March 2006
*
*
* >
* -- added step function and pulled out of package IJ... | Java |
import java.lang.Math;
import java.util.Vector;
import java.util.Date;
public class Sieve {
private static long MAX = (long)Math.pow(10,10);
private static long MIN = (long)Math.pow(10,9);
public long[] eNums;
public int[] primes10000;
private int numDigits = 20;
private long numDivides = 0;
public... | Java |
public class SphericalHarmonics {
public static double Ylm(int l, int m, double theta, double phi) {
return ( (-1)^m*Math.sqrt(((2*l+1)/(4*Math.PI)*fact(l-m)/fact(l+m))*
Legendre.compute(m,l,Math.cos(theta)) ;
}
}
} | Java |
//Lukas Saul - Warsaw 2000
//
// modified - jan. 2006
import java.util.StringTokenizer;
public class Legendre {
public int N=200; // change to max polynomial size
double[][] P, P_t; //= new double[N+1][N+1]; // coefficients of Pn(x)
double[][] DP;// = new double[N][N]; // derivitives of Pn(x)
doub... | Java |
import java.lang.Math;
import java.util.Date;
import gaiatools.numeric.integration.Simpson;
//import drasys.or.nonlinear.*; // our friend mr. simpson resides here
/**
* This class should take care of doing multi-dimensional numeric integrations.
* This will be slow!!
*
* Actually not half bad...
*
*
* ... | Java |
import java.util.Date;
public class BofThetaTest {
public static void main(String[] args) {
//System.out.println(10^2+" "+10^1+" "+1000+" "+Math.pow(10,2));
double AU = 1.5* Math.pow(10,11);
Date d1 = new Date();
VIonBulk vib = new VIonBulk(AU, 28000,135*Math.PI/180);
System.out.println(vib.Vr()+"... | Java |
//import gov.noaa.noaaserver.sgt.awt.*;
//import gov.noaa.noaaserver.sgt.*;
//import gov.noaa.noaaserver.sgt.datamodel.*;
import gov.noaa.pmel.sgt.swing.*;
import gov.noaa.pmel.sgt.dm.*;
import gov.noaa.pmel.util.*;
import gov.noaa.pmel.sgt.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
... | Java |
import java.util.StringTokenizer;
import java.util.Vector;
import java.util.StringTokenizer;
import java.util.Date;
import java.util.*;
/**
*
* Simulating response at IBEX_LO with this class
*
* Create interstellar medium and perform integration
*
*/
public class IBEXWind {
public int mcN = 100000; ... | Java |
/**
* Simulating response at hypothetical imaging platform
*
* Create interstellar medium and perform integration
*
*/
public class Skymap {
public int mcN = 8000; // number of iterations per 3D integral
public double smartMin = 1.0; // lowest flux to continue integration of sector
public String outFi... | Java |
import java.lang.Math;
/** Utility class for transforming coordinates, etc.
*
* (this is a general vector class, formulated for use in heliosphere)
* (GSE not really implemented yet)
*
* Lukas Saul - Warsaw - July 2000
* Last updated May, 2001
* renamed to HelioVector, Oct 2002
*
*/
public class Hel... | Java |
import java.util.StringTokenizer;
public class IbexPostFitter {
public CurveFitter cf;
public IbexPostFitter() {
file asciiOutFile = new file("second_pass_ascii.txt");
file f = new file("dirD.txt");
int numLines = 900;
// load the real data
file df = new file("second_pass.txt");
int... | Java |
import java.lang.Math;
/** Utility class for transforming coordinates, etc.
*
*
*
* (this is a general vector class, formulated for use in heliosphere)
* (GSE not really implemented yet)
*
* Lukas Saul - Warsaw - July 2000
* Last updated May, 2001
*/
public class HelioPoint {
/*
* These static in... | Java |
public class TestFunction {
public TestFunction() {
MyF test = new MyF();
MyF test1 = new MyF();
MyF test2 = new MyF();
MyF test3 = new MyF();
Function a = test.getFunction(0,1.0);
Function b = test1.getFunction(0,0.0);
Function c = test2.getFunction(1,5.0);
Function d = test3.getFunction(... | Java |
import java.util.Date;
public class ThetaOfBTest {
public static void main(String[] args) {
//System.out.println(10^2+" "+10^1+" "+1000+" "+Math.pow(10,2));
double AU = 1.5* Math.pow(10,11);
Date d1 = new Date();
BofTheta vib = new BofTheta(AU, 28000);
System.out.println(vib.testThetaOfB(AU));
... | Java |
/*
* Class MaximisationExample
*
* An example of the use of the class Maximisation
* and the interface MaximisationFunction
*
* Finds the maximum of the function
* z = a + x^2 + 3y^4
* where a is constant
* (an easily solved function has been chosen
* for clar... | Java |
/**
* Utility class for passing around 3D functions
*
* Use this to generate a 2D function by fixing one of the variables
*/
public abstract class FunctionIII {
/**
* Override this with an interesting 3D function
*
*/
public double function3(double x, double y, double z) {
return 0;
}
/**... | Java |
/**
* Use a NeutralDistribution to compute a NeutralDensity in the heliosphere
*
* this is done by integrating over all velocity space for a desired grid
*
* x, y, built around origin from + to - 'scale'.
*/
public class NeutralDensity {
private static int gridsize = 40; // gridsize^2 spatial calcualtion p... | Java |
/*
* $Id: JGridDemo.java,v 1.8 2001/02/05 23:28:46 dwd Exp $
*
* This software is provided by NOAA for full, free and open release. It is
* understood by the recipient/user that NOAA assumes no liability for any
* errors contained in the code. Although this software is released without
* conditions or res... | Java |
import cern.jet.math.Bessel;
import java.lang.Math;
import java.util.Date;
import drasys.or.nonlinear.*;
public class SimpleNeutralDistribution {
// constants not correct yet
public static double Ms = 2 * Math.pow(10,30);
public static double G = 6.67 * Math.pow(10,-11);
public static double AU = 1.5* M... | Java |
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.table.*;
import javax.swing.text.DefaultEditorKit;
import java.net.*;
import java.io.*;
import java.util.*;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
// Now keeps the l... | Java |
import java.io.*;
/**
* Read and parse a single "*.MCA" file
* These MCA files are outputs of our positional MCP detector
* sometimes known as "quanta" or "carlson" detector
*
*/
public class 3DFileReader {
public DataInputStream dis;
int maxbin = 128;
int betamax = 3;
int alphamax = 109;
int... | Java |
import java.lang.Math;
import java.util.Date;
//Put your own function here and intgrate it
// Lukas Saul - Warsaw 2000
// lets use someone elses, shall we?
// nah, they all suck. I'll write my own
public class Integration {
private int startDivision = 5;
private long maxDivision = 100000;
private i... | Java |
import java.util.*;
/**
* Lukas Saul, UNH Space Science Dept.
* Curvefitting utilities here.
*
* Adapted to use simplex method from flanagan java math libraries - March 2006
*
*
* >
* -- added step function and pulled out of package IJ -- lukas saul, 11/04
*
* -- adding EXHAUSTIVE SEARCH abili... | Java |
/**
* Use this to compute the original velocity vector at infinity,
* given a velocity and position at a current time.
*
* // note velocity vector is reversed, represents origin to point at t=-infinity
*
* Use static heliovector methods to avoid the dreaded "new Object()"...
*
*
* !!! tested extens... | Java |
import java.util.StringTokenizer;
import java.util.Vector;
import java.util.StringTokenizer;
import java.util.Date;
import java.util.*;
/**
*
* Simulating response at IBEX_LO with this class
*
* Create interstellar medium and perform integration
*
*/
public class IBEXWind2 {
public int mcN = 10000; ... | Java |
import flanagan.analysis.Stat;
/**
* A basic power law in ENERGY
*
*/
public class KappaVLISM extends InterstellarMedium {
public HelioVector vBulk;
public double power, density, kappa, norm, ee, temp, omega;
public static double NaN = Double.NaN;
public static double MP = 1.672621*Math.pow(10,-27);... | Java |
import java.io.File;
import java.lang.Math;
import java.util.*;
public class NeutralDistribution {
public static double Ms = 2 * 10^30;
public static double G = 6.67 * .00000000001;
public static double K = 1; // correct this soon!
public static double Mhe = 1 * 10^-80;
public double Q, F1, F2, Tem... | Java |
/**
* Simulating response at IBEX_LO with this class
*
* Create interstellar medium and perform integration
*
* This one assumes spacecraft can look all around the world and makes 2D maps for each spacecraft location.
*/
public class IBEXLO_super {
public int mcN = 20000; // number of iterations per 3D ... | Java |
public class InvertibleFunction extends FunctionI {
double inverse(double y) {
return 0.0;
}
} | Java |
// THIS CLASS HAS SOME FILE UTILITY STUFF //
// Updated Version 02/28/00
// Copyright 9 Elder
// nice synchronizations stuff here-
//new : initRead, initWrite, closeRead, closeWrite, readLine, write
// improved: readShitLn
//// be sure to use openFile() and closeFile() when using getLine and pu... | Java |
public class MakeDrDtArray {
public static void main(String[] args) {
VIonBulk vib;
file myFile;
double AU = 1.5* Math.pow(10,11);
myFile = new file("testArray2.txt");
myFile.initWrite(false);
for (double theta = -3.14; theta<= 3.14; theta=theta+3.14/30) {
vib = new VIonBulk(AU, 28000, theta... | Java |
import java.util.StringTokenizer;
/**
* Simulating response at IBEX_LO with this class
*
* Create interstellar medium and perform integration
*
*/
public class IBEXLO_09fit {
public int mcN = 100000; // number of iterations per 3D integral
public String outFileName = "lo_fit_09.txt";
public stati... | Java |
import java.util.*;
import cern.jet.math.Bessel; // use cern library for i0 and j0
/**
* Use this to model PUI distribution & observed eflux a la
*
* Isenberg, JGR, 102, A3, 4719-4724, 1997
*
*
* Assume spacecraft samples only antisunwardest hemisphere,
* field near radial...
*
*/
public class Hemisphe... | Java |
import java.util.Date;
import java.lang.Math;
public class HelioTester {
public static void main(String[] args) {
// THis tests the moveZAxis routine
Date d1 = new Date();
//HelioVector h1 = new HelioVector(HelioVector.Spherical, 1,Math.PI/2, Math.PI/4);
//HelioVector h2 = new HelioVector(HelioVecto... | Java |
import java.util.*;
//import cern.jet.math.Bessel;
//import com.imsl.math.Complex;
/**
* This calculates the velocity distribution of neutral atoms in the heliosphere.
* (according to the hot model or interstellar neutral dist. of choice)
*
* Also computes losses to ionization - based on 1/r^2 rate
*
* U... | Java |
public class TestDistribution {
public static void main(String[] args) {
double AU = 15 * 10^13; // m
SimpleNeutralDistribution snd = new SimpleNeutralDistribution(
25000, 0, 0, 10000, 7*Math.pow(10,-3), 0, 6.8*Math.pow(10,-8));
file f=new file("vrDist.txt");
f.initWrite(false);
f... | Java |
/*
* Class Minimisation
*
* Contains methods for finding the values of the
* function parameters that minimise that function
* using the Nelder and Mead Simplex method.
*
* The function needed by the minimisation method
* is supplied by though the interface, MinimisationFunction
*
* WRITTEN BY: ... | Java |
import java.io.File;
import java.lang.Math;
import java.util.*;
/**
* This class computes the ionization percentage
* simple model with r^-2 dependence
*
*
*/
public class SurvivalProbability {
public static double Ms = 2 * Math.pow(10,30);
public static double G = 6.67 * Math.pow(10,-11);
public... | Java |
import java.util.StringTokenizer;
import java.util.Random;
public class Benford2 {
public file inFile, outFile;
public int[][] digitTallies;
//public double[] factors = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0}; // last one placeholder
public int skipLines, dataColumn;
public StringTokenizer st;
public Random r;
... | Java |
import java.util.StringTokenizer;
import java.util.Date;
import java.util.*;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
/**
* Ephemeris info here!
* Position of Earth, pointing of IBEX, position of IBEX based on DOY input
*
* Orbit info also
*/
public class EarthIBEX {
// read... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* T... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* T... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Copyright (C) 2013 rdrrlabs gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This prog... | Java |
/*
* Project: Timeriffic
* Copyright (C) 2009 ralfoide gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later ve... | Java |
/*
* Project: Timeriffic
* Copyright (C) 2011 ralfoide gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later ve... | Java |
/*
* Project: Timeriffic
* Copyright (C) 2011 ralfoide gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later ve... | Java |
/*
* Project: Timeriffic
* Copyright (C) 2008 ralfoide gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later ve... | Java |
/*
* Project: Timeriffic
* Copyright (C) 2008 ralfoide gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later ve... | Java |
/*
* Project: Timeriffic
* Copyright (C) 2008 ralfoide gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later ve... | Java |
/*
* Project: Timeriffic
* Copyright (C) 2009 ralfoide gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later ve... | Java |
/*
* Project: Timeriffic
* Copyright (C) 2009 ralfoide gmail com,
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later ve... | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.